pulse-server: try to not put pointers in info messages

It's not very helpful, prefer to use human readable strings and move the
more techincal stuff in debug messages.
This commit is contained in:
Wim Taymans 2021-11-05 16:22:22 +01:00
parent 2f3e65c049
commit 743f699193
3 changed files with 71 additions and 96 deletions

View file

@ -61,7 +61,7 @@ void operation_complete(struct operation *o)
{
struct client *client = o->client;
pw_log_info("client %p [%s]: tag:%u complete", client, client->name, o->tag);
pw_log_info("[%s]: tag:%u complete", client->name, o->tag);
reply_simple_ack(client, o->tag);
operation_free(o);