hc
2023-11-20 2e7bd41e4e8ab3d1efdabd9e263a2f7fe79bff8c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff --git a/src/shared/log.c b/src/shared/log.c
index 65f0fea..b202d22 100644
--- a/src/shared/log.c
+++ b/src/shared/log.c
@@ -50,12 +50,12 @@ static void vlog(int priority, const char *format, va_list ap) {
      * has to be temporally disabled. */
     pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &oldstate);
 
-    if (_syslog) {
+    //if (_syslog) {
         va_list ap_syslog;
         va_copy(ap_syslog, ap);
         vsyslog(priority, format, ap_syslog);
         va_end(ap_syslog);
-    }
+    //}
 
     flockfile(stderr);
 
-- 
2.17.1