diff options
author | thlo <smarttv640@gmail.com> | 2014-01-08 20:56:17 +0100 |
---|---|---|
committer | thlo <smarttv640@gmail.com> | 2014-01-08 20:56:17 +0100 |
commit | c1ca6779adb40404f4cfaa95a7daadc8d0f6d497 (patch) | |
tree | d3b6ca60db677de59b5b4eee1b14f770a2a38c28 | |
parent | 66217a45b7f733a33c08db66ddc19c6192eb63aa (diff) | |
download | vdr-plugin-smarttvweb-c1ca6779adb40404f4cfaa95a7daadc8d0f6d497.tar.gz vdr-plugin-smarttvweb-c1ca6779adb40404f4cfaa95a7daadc8d0f6d497.tar.bz2 |
Logging correction.
-rwxr-xr-x | log.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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(); |