From: bert hubert Date: Thu, 22 Jan 2015 10:16:35 +0000 (+0100) Subject: our logger is now so lockfree the output became hella ugly on console output, tweaked... X-Git-Tag: rec-3.7.0-rc2~59^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3dd58dd89aae7685851311ab3cd3bd63796764cf;p=thirdparty%2Fpdns.git our logger is now so lockfree the output became hella ugly on console output, tweaked it a bit --- diff --git a/pdns/logger.cc b/pdns/logger.cc index 6779b758dc..186f2ad54d 100644 --- a/pdns/logger.cc +++ b/pdns/logger.cc @@ -50,8 +50,7 @@ void Logger::log(const string &msg, Urgency u) if(u<=consoleUrgency) {// Sep 14 06:52:09 char buffer[50]; strftime(buffer,sizeof(buffer),"%b %d %H:%M:%S ", &tm); - clog<