From abe80b7c1ac9aa379686416909740e058ac39604 Mon Sep 17 00:00:00 2001 From: Ilya Mashchenko Date: Mon, 16 Oct 2023 17:14:05 +0300 Subject: disable logging to syslog by default (#16214) * disable logging to syslog * set to 0 the rest of log_syslog vars --- libnetdata/log/log.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libnetdata/log/log.c b/libnetdata/log/log.c index 60d13f3b08..02bb776c5b 100644 --- a/libnetdata/log/log.c +++ b/libnetdata/log/log.c @@ -12,11 +12,11 @@ int web_server_is_multithreaded = 1; const char *program_name = ""; uint64_t debug_flags = 0; -int access_log_syslog = 1; -int error_log_syslog = 1; -int collector_log_syslog = 1; -int output_log_syslog = 1; // debug log -int health_log_syslog = 1; +int access_log_syslog = 0; +int error_log_syslog = 0; +int collector_log_syslog = 0; +int output_log_syslog = 0; // debug log +int health_log_syslog = 0; int stdaccess_fd = -1; FILE *stdaccess = NULL; -- cgit v1.2.3