{processes,unixsock} plugin: Remove annoying debug messages.
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Tue, 27 Mar 2007 14:31:51 +0000 (16:31 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Tue, 27 Mar 2007 14:31:51 +0000 (16:31 +0200)
src/processes.c
src/unixsock.c

index 7d918d4..5fd1221 100644 (file)
@@ -622,14 +622,11 @@ int ps_read_process (int pid, procstat_t *ps, char *state)
        fields_len = strsplit (buffer, fields, 64);
        if (fields_len < 24)
        {
-               DEBUG ("`%s' has only %i fields..",
-                               filename, fields_len);
+               DEBUG ("processes plugin: ps_read_process (pid = %i):"
+                               " `%s' has only %i fields..",
+                               (int) pid, filename, fields_len);
                return (-1);
        }
-       else if (fields_len != 41)
-       {
-               DEBUG ("WARNING: (fields_len = %i) != 41", fields_len);
-       }
 
        /* copy the name, strip brackets in the process */
        name_len = strlen (fields[1]) - 2;
index 4cf3c13..95ccb9d 100644 (file)
@@ -863,9 +863,7 @@ static int us_shutdown (void)
 
        if (listen_thread != (pthread_t) 0)
        {
-               DEBUG ("unixsock plugin: Sending SIGTERM to listening thread");
                pthread_kill (listen_thread, SIGTERM);
-               DEBUG ("unixsock plugin: Waiting for thread to terminate");
                pthread_join (listen_thread, &ret);
                listen_thread = (pthread_t) 0;
        }