From: Florian Forster Date: Wed, 27 Aug 2008 15:42:43 +0000 (+0200) Subject: unixsock plugin: Improve two debug messages. X-Git-Tag: collectd-4.5.0~10 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=c0a78f2839e756d929758832444e3c7de8600622;p=collectd.git unixsock plugin: Improve two debug messages. --- diff --git a/src/unixsock.c b/src/unixsock.c index 8f06046c..d800906e 100644 --- a/src/unixsock.c +++ b/src/unixsock.c @@ -164,7 +164,7 @@ static void *us_handle_client (void *arg) free (arg); arg = NULL; - DEBUG ("Reading from fd #%i", fd); + DEBUG ("unixsock plugin: us_handle_client: Reading from fd #%i", fd); fhin = fdopen (fd, "r"); if (fhin == NULL) @@ -270,7 +270,7 @@ static void *us_handle_client (void *arg) } } /* while (fgets) */ - DEBUG ("Exiting.."); + DEBUG ("unixsock plugin: us_handle_client: Exiting.."); fclose (fhin); fclose (fhout);