From 928847933891f1d47b87b66299d5d2b241107c48 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Tue, 13 Jun 2006 09:33:55 +0000 Subject: Tweak the printing of client connections a bit so that it's more apparent what and who it is that's connecting. git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1014 fefdeb5f-60dc-0310-8127-8f9354f1896f --- src/polypcore/client.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/polypcore/client.c') diff --git a/src/polypcore/client.c b/src/polypcore/client.c index b5ed2fd0..4ece07a8 100644 --- a/src/polypcore/client.c +++ b/src/polypcore/client.c @@ -86,6 +86,9 @@ void pa_client_kill(pa_client *c) { void pa_client_set_name(pa_client *c, const char *name) { assert(c); + + pa_log_info(__FILE__": client %u changed name from \"%s\" to \"%s\"", c->index, c->name, name); + pa_xfree(c->name); c->name = pa_xstrdup(name); -- cgit