Update dlog to master which just calls time.Local()

maybe
fixes #57
This commit is contained in:
Frank Denis 2018-01-31 10:14:06 +01:00
parent 148d900a72
commit 1bbc7e9540
3 changed files with 6 additions and 6 deletions

View file

@ -173,7 +173,7 @@ func logf(severity Severity, format string, args ...interface{}) {
if severity < _globals.logLevel.get() {
return
}
now := time.Now()
now := time.Now().Local()
year, month, day := now.Date()
hour, minute, second := now.Clock()
message := fmt.Sprintf(format, args...)