@cryptotaxi247 / netdata-1 / commits / abe80b7c1

disable logging to syslog by default (#16214)

* disable logging to syslog * set to 0 the rest of log_syslog vars

Ilya Mashchenko committed Oct 16, 2023 at 17:14 UTC abe80b7c1ac9aa379686416909740e058ac39604
1 file changed +5 -5
libnetdata/log/log.c
+5 -5
@@ -12,11 +12,11 @@ int web_server_is_multithreaded = 1;
12 const char *program_name = "";
13 uint64_t debug_flags = 0;
14
15 -int access_log_syslog = 1;
16 -int error_log_syslog = 1;
17 -int collector_log_syslog = 1;
18 -int output_log_syslog = 1; // debug log
19 -int health_log_syslog = 1;
15 +int access_log_syslog = 0;
16 +int error_log_syslog = 0;
17 +int collector_log_syslog = 0;
18 +int output_log_syslog = 0; // debug log
19 +int health_log_syslog = 0;
20
21 int stdaccess_fd = -1;
22 FILE *stdaccess = NULL;