unixsock plugin: Improve two debug messages.
authorFlorian Forster <octo@noris.net>
Wed, 27 Aug 2008 15:42:43 +0000 (17:42 +0200)
committerFlorian Forster <octo@noris.net>
Wed, 27 Aug 2008 15:42:43 +0000 (17:42 +0200)
src/unixsock.c

index 8f06046..d800906 100644 (file)
@@ -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);