aboutsummaryrefslogtreecommitdiffstats
path: root/logger
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-03-11 23:43:52 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-03-11 23:43:52 +0800
commit61bf29be36a6678ba16c457229ca306339ea4ebc (patch)
tree6d765d41b48bbc41165491b1a4dc7b74ad7258ae /logger
parent58909117bea6a8185df3335300426b8a49542235 (diff)
downloadgo-tangerine-61bf29be36a6678ba16c457229ca306339ea4ebc.tar
go-tangerine-61bf29be36a6678ba16c457229ca306339ea4ebc.tar.gz
go-tangerine-61bf29be36a6678ba16c457229ca306339ea4ebc.tar.bz2
go-tangerine-61bf29be36a6678ba16c457229ca306339ea4ebc.tar.lz
go-tangerine-61bf29be36a6678ba16c457229ca306339ea4ebc.tar.xz
go-tangerine-61bf29be36a6678ba16c457229ca306339ea4ebc.tar.zst
go-tangerine-61bf29be36a6678ba16c457229ca306339ea4ebc.zip
Check length of timestring before taking slice
Diffstat (limited to 'logger')
-rw-r--r--logger/types.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/logger/types.go b/logger/types.go
index d98f0874a..0f70578ba 100644
--- a/logger/types.go
+++ b/logger/types.go
@@ -8,7 +8,12 @@ import (
type utctime8601 struct{}
func (utctime8601) MarshalJSON() ([]byte, error) {
- return []byte(`"` + time.Now().UTC().Format(time.RFC3339Nano)[:26] + `Z"`), nil
+ timestr := time.Now().UTC().Format(time.RFC3339Nano)
+ // Bounds check
+ if len(timestr) > 26 {
+ timestr = timestr[:26]
+ }
+ return []byte(`"` + timestr + `Z"`), nil
}
type JsonLog interface {