diff options
Diffstat (limited to 'daemon/commands.c')
-rw-r--r-- | daemon/commands.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/daemon/commands.c b/daemon/commands.c index 84298416..a8afb5a0 100644 --- a/daemon/commands.c +++ b/daemon/commands.c @@ -407,7 +407,7 @@ static void pipe_write_cb(uv_write_t* req, int status) uv_close((uv_handle_t *)client, pipe_close_cb); --clients; buffer_free(client->data); - netdata_log_info("Command Clients = %u\n", clients); + // netdata_log_info("Command Clients = %u", clients); } static inline void add_char_to_command_reply(BUFFER *reply_string, unsigned *reply_string_size, char character) @@ -557,7 +557,7 @@ static void pipe_read_cb(uv_stream_t *client, ssize_t nread, const uv_buf_t *buf if (nread < 0 && UV_EOF != nread) { uv_close((uv_handle_t *)client, pipe_close_cb); --clients; - netdata_log_info("Command Clients = %u\n", clients); + // netdata_log_info("Command Clients = %u", clients); } } @@ -593,7 +593,7 @@ static void connection_cb(uv_stream_t *server, int status) } ++clients; - netdata_log_info("Command Clients = %u\n", clients); + // netdata_log_info("Command Clients = %u", clients); /* Start parsing a new command */ cmd_ctx->command_string_size = 0; cmd_ctx->command_string[0] = '\0'; @@ -603,7 +603,7 @@ static void connection_cb(uv_stream_t *server, int status) netdata_log_error("uv_read_start(): %s", uv_strerror(ret)); uv_close((uv_handle_t *)client, pipe_close_cb); --clients; - netdata_log_info("Command Clients = %u\n", clients); + // netdata_log_info("Command Clients = %u", clients); return; } } |