From: Florian Forster Date: Thu, 3 Jul 2008 15:50:53 +0000 (+0200) Subject: src/rrd_daemon.c: Remove remaining debug messages. X-Git-Url: https://git.octo.it/?p=rrdtool.git;a=commitdiff_plain;h=a42f6740636ce163011504932c5aab7cdfc95c86 src/rrd_daemon.c: Remove remaining debug messages. --- diff --git a/src/rrd_daemon.c b/src/rrd_daemon.c index 7a80220..bc44b81 100644 --- a/src/rrd_daemon.c +++ b/src/rrd_daemon.c @@ -310,9 +310,6 @@ static int enqueue_cache_item (cache_item_t *ci, /* {{{ */ { int did_insert = 0; - RRDD_LOG (LOG_DEBUG, "enqueue_cache_item: Adding %s to the update queue.", - ci->file); - if (ci == NULL) return (-1); @@ -549,9 +546,6 @@ static void *queue_thread_main (void *args __attribute__((unused))) /* {{{ */ pthread_mutex_unlock (&cache_lock); - RRDD_LOG (LOG_DEBUG, "queue_thread_main: rrd_update (%s, %i, %p)", - file, values_num, (void *) values); - status = rrd_update_r (file, NULL, values_num, (void *) values); if (status != 0) { @@ -574,8 +568,6 @@ static void *queue_thread_main (void *args __attribute__((unused))) /* {{{ */ } /* while (do_shutdown == 0) */ pthread_mutex_unlock (&cache_lock); - RRDD_LOG (LOG_DEBUG, "queue_thread_main: Exiting."); - return (NULL); } /* }}} void *queue_thread_main */ @@ -944,9 +936,6 @@ static int handle_request_update (int fd, /* {{{ */ ci->flags = CI_FLAGS_IN_TREE; g_tree_insert (cache_tree, (void *) ci->file, (void *) ci); - - RRDD_LOG (LOG_DEBUG, "handle_request_update: Created new tree node %s.", - ci->file); } /* }}} */ assert (ci != NULL); @@ -1329,11 +1318,7 @@ static void *listen_thread_main (void *args __attribute__((unused))) /* {{{ */ int i; for (i = 0; i < config_listen_address_list_len; i++) - { - RRDD_LOG (LOG_DEBUG, "listen_thread_main: config_listen_address_list[%i] " - "= %s", i, config_listen_address_list[i]); open_listen_socket (config_listen_address_list[i]); - } if (config_listen_address_list_len < 1) open_listen_socket (RRDCACHED_DEFAULT_ADDRESS); @@ -1436,8 +1421,6 @@ static void *listen_thread_main (void *args __attribute__((unused))) /* {{{ */ } pthread_mutex_unlock (&connetion_threads_lock); - RRDD_LOG (LOG_DEBUG, "listen_thread_main: Exiting."); - return (NULL); } /* }}} void *listen_thread_main */ @@ -1525,14 +1508,10 @@ static int daemonize (void) /* {{{ */ static int cleanup (void) /* {{{ */ { - RRDD_LOG (LOG_DEBUG, "cleanup ()"); - do_shutdown++; - RRDD_LOG (LOG_DEBUG, "cleanup: Joining queue_thread.."); pthread_cond_signal (&cache_cond); pthread_join (queue_thread, /* return = */ NULL); - RRDD_LOG (LOG_DEBUG, "cleanup: done"); remove_pidfile ();