From c1ca6779adb40404f4cfaa95a7daadc8d0f6d497 Mon Sep 17 00:00:00 2001 From: thlo Date: Wed, 8 Jan 2014 20:56:17 +0100 Subject: Logging correction. --- log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/log.c b/log.c index 9fea0bd..96b8126 100755 --- a/log.c +++ b/log.c @@ -45,7 +45,7 @@ Log* Log::getInstance() { int Log::init(string fileName) { char timebuf[128]; time_t now = time(NULL); - strftime(timebuf, sizeof(timebuf), "%a, %d %b %Y %H:%M:%S GMT", localtime(&now)); + strftime(timebuf, sizeof(timebuf), "%a, %d %b %Y %H:%M:%S (%Z)", localtime(&now)); if (fileName != "") { mLogFile = new ofstream(); -- cgit v1.2.3