aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2018-06-25 17:23:33 +0800
committerGitHub <noreply@github.com>2018-06-25 17:23:33 +0800
commitb0cfd9c786e2eb804257c697b8e18dd6d595be6a (patch)
tree073b35b4523f8bc08f78e6770ba4925ee6785d3f
parent489566567073f697c619a61217ab5bd810bc833b (diff)
parent6d8a1bfb08a330e20ceb62440d3f9db70e242c86 (diff)
downloadgo-tangerine-b0cfd9c786e2eb804257c697b8e18dd6d595be6a.tar
go-tangerine-b0cfd9c786e2eb804257c697b8e18dd6d595be6a.tar.gz
go-tangerine-b0cfd9c786e2eb804257c697b8e18dd6d595be6a.tar.bz2
go-tangerine-b0cfd9c786e2eb804257c697b8e18dd6d595be6a.tar.lz
go-tangerine-b0cfd9c786e2eb804257c697b8e18dd6d595be6a.tar.xz
go-tangerine-b0cfd9c786e2eb804257c697b8e18dd6d595be6a.tar.zst
go-tangerine-b0cfd9c786e2eb804257c697b8e18dd6d595be6a.zip
Merge pull request #17054 from chfast/log-time-format
log: Change time format
-rw-r--r--log/format.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/log/format.go b/log/format.go
index bed32bd2d..0d4732cc0 100644
--- a/log/format.go
+++ b/log/format.go
@@ -15,7 +15,7 @@ import (
const (
timeFormat = "2006-01-02T15:04:05-0700"
- termTimeFormat = "01-02|15:04:05.999999"
+ termTimeFormat = "01-02|15:04:05.000"
floatFormat = 'f'
termMsgJust = 40
)