diff options
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/log.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/common/log.c b/src/common/log.c index c66c430568..faa8f64891 100644 --- a/src/common/log.c +++ b/src/common/log.c @@ -75,11 +75,6 @@ logv(int severity, const char *funcname, const char *format, va_list ap) assert(format); if (severity < loglevel) return; - if (!logfiles) { - /* XXX This is a temporary measure until we get configuration support - for logfiles. */ - add_stream_log(loglevel, "<stdout>", stdout); - } for (lf = logfiles; lf; lf = lf->next) { if (severity < lf->loglevel || severity > lf->max_loglevel) continue; |