From 8ccba8ebfaca85017eb125c45b0f16ae358358a7 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Thu, 1 May 2014 16:26:39 +0200 Subject: Remove support for log files syslog/journald do a much better job at organizing logs, with the additional advantage of proper log rotation. If someone really wants to have a log file for fastd, they can just redirect stderr. --- src/log.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'src/log.c') diff --git a/src/log.c b/src/log.c index 9bcbd14..b274dbd 100644 --- a/src/log.c +++ b/src/log.c @@ -239,7 +239,7 @@ void fastd_logf(fastd_loglevel_t level, const char *format, ...) { buffer[sizeof(buffer)-1] = 0; - if (!ctx.log_initialized || level <= conf.log_stderr_level || conf.log_files) { + if (!ctx.log_initialized || level <= conf.log_stderr_level) { time_t t; struct tm tm; @@ -256,11 +256,5 @@ void fastd_logf(fastd_loglevel_t level, const char *format, ...) { if (ctx.log_initialized) { if (level <= conf.log_syslog_level) syslog(get_syslog_level(level), "%s", buffer); - - fastd_log_fd_t *file; - for (file = ctx.log_files; file; file = file->next) { - if (level <= file->config->level) - dprintf(file->fd, "%s%s%s\n", timestr, get_log_prefix(level), buffer); - } } } -- cgit v1.2.3