diff options
Diffstat (limited to 'src/kike.c')
-rw-r--r-- | src/kike.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1414,7 +1414,11 @@ main (int argc, char *argv[]) } // TODO: daemonize - // TODO: syslog (if not running in debug mode) + if (!g_debug_mode) + { + openlog (PROGRAM_NAME, LOG_NDELAY | LOG_NOWAIT | LOG_PID, 0); + g_log_message_real = log_message_syslog; + } ctx.polling = true; while (ctx.polling) |