From dc8cdd40de28eff8d26d8b209d01ea985ac46123 Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Sat, 14 Apr 2012 19:07:11 +0700 Subject: [PATCH] Make debug lines a bit smaller. Well, a byte actually, not bit... --- include/znc/ZNCDebug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/znc/ZNCDebug.h b/include/znc/ZNCDebug.h index 5e55e7d9..606340ff 100644 --- a/include/znc/ZNCDebug.h +++ b/include/znc/ZNCDebug.h @@ -49,7 +49,7 @@ public: tm* time_info = localtime(&time_now.tv_sec); strftime(buf, sizeof(buf), "[%Y-%m-%d %H:%M:%S.", time_info); std::ostringstream buffer; - buffer << buf << std::setw(6) << std::setfill('0') << (time_now.tv_usec) << "]: "; + buffer << buf << std::setw(6) << std::setfill('0') << (time_now.tv_usec) << "] "; return buffer.str(); }