summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthlo <smarttv640@gmail.com>2014-01-08 20:56:17 +0100
committerthlo <smarttv640@gmail.com>2014-01-08 20:56:17 +0100
commitc1ca6779adb40404f4cfaa95a7daadc8d0f6d497 (patch)
treed3b6ca60db677de59b5b4eee1b14f770a2a38c28
parent66217a45b7f733a33c08db66ddc19c6192eb63aa (diff)
downloadvdr-plugin-smarttvweb-c1ca6779adb40404f4cfaa95a7daadc8d0f6d497.tar.gz
vdr-plugin-smarttvweb-c1ca6779adb40404f4cfaa95a7daadc8d0f6d497.tar.bz2
Logging correction.
-rwxr-xr-xlog.c2
1 files changed, 1 insertions, 1 deletions
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();