in order to display proper time i adjusted plugins/WebLogs line 178 from
gmtime = time.gmtime(int(words[0]))
to
gmtime = time.localtime(int(words[0]))
The server is running in TZ Germany/Berlin and hence showing always "wrong" time.
Subsequently var naming in some following lines should be adjusted to.