Alexander Barton : Don't log critical (or worse) messages to stderr
Module: ngircd.git Branch: master Commit: 5da98ec389de2a6d671d270abba86c395e593537 URL: http://ngircd.barton.de/cgi-bin/gitweb.cgi?p=ngircd.git&a=commit;h=5da98ec38... Author: Alexander Barton <alex@barton.de> Date: Thu Dec 2 13:36:19 2010 +0100 Don't log critical (or worse) messages to stderr stderr isn't redirected to the "error file" any more, so there is no point in trying to log to it ... --- src/ngircd/log.c | 6 ------ 1 files changed, 0 insertions(+), 6 deletions(-) diff --git a/src/ngircd/log.c b/src/ngircd/log.c index f68a0fb..0bc53ed 100644 --- a/src/ngircd/log.c +++ b/src/ngircd/log.c @@ -205,12 +205,6 @@ va_dcl Log_Message(Level, msg); - if (Level <= LOG_CRIT) { - /* log critical messages to stderr */ - fprintf(stderr, "%s\n", msg); - fflush(stderr); - } - if (snotice) { /* Send NOTICE to all local users with mode +s and to the * local &SERVER channel */
Teilnehmer (1)
-
alex@arthur.barton.de