diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-06-25 17:23:33 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-25 17:23:33 +0800 |
commit | b0cfd9c786e2eb804257c697b8e18dd6d595be6a (patch) | |
tree | 073b35b4523f8bc08f78e6770ba4925ee6785d3f | |
parent | 489566567073f697c619a61217ab5bd810bc833b (diff) | |
parent | 6d8a1bfb08a330e20ceb62440d3f9db70e242c86 (diff) | |
download | dexon-b0cfd9c786e2eb804257c697b8e18dd6d595be6a.tar.gz dexon-b0cfd9c786e2eb804257c697b8e18dd6d595be6a.tar.zst dexon-b0cfd9c786e2eb804257c697b8e18dd6d595be6a.zip |
Merge pull request #17054 from chfast/log-time-format
log: Change time format
-rw-r--r-- | log/format.go | 2 |
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 ) |