summaryrefslogtreecommitdiffstats
path: root/src/polypcore/client.c
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2006-06-13 09:33:55 +0000
committerPierre Ossman <ossman@cendio.se>2006-06-13 09:33:55 +0000
commit928847933891f1d47b87b66299d5d2b241107c48 (patch)
treef1dfdc18dce52bb26bcff7a5cc7abc4ce42781a0 /src/polypcore/client.c
parent7582f7493b4103dcc1442c511d856cb616409078 (diff)
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
Diffstat (limited to 'src/polypcore/client.c')
-rw-r--r--src/polypcore/client.c3
1 files changed, 3 insertions, 0 deletions
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);