print log every time regulater timezone

release/v1.15
Unknwon 2015-10-10 19:04:26 -04:00
parent 5676fa5b5d
commit 570ddefc32
1 changed files with 2 additions and 1 deletions

View File

@ -52,8 +52,9 @@ func regulateTimeZone(t time.Time) time.Time {
} }
zone := t.Local().Format("-0700") zone := t.Local().Format("-0700")
log.Trace("regulateTimeZone: %s - %s", t.Local(), zone)
if len(zone) != 5 { if len(zone) != 5 {
log.Debug("Unprocessable time: %v", t.Local())
return t return t
} }
hour := com.StrTo(zone[2:3]).MustInt() hour := com.StrTo(zone[2:3]).MustInt()