diff options
author | Felix Lange <fjl@twurst.com> | 2017-02-24 01:30:32 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2017-02-27 22:32:48 +0800 |
commit | 38e273597c283e607fd58199ed77890813f7c22c (patch) | |
tree | dedbca610c717eb2a722c3edd84d57b5bfcdaebf /log/format.go | |
parent | e8b3e226124d2b0234c36ef2ca9221dc95c56a1a (diff) | |
download | go-tangerine-38e273597c283e607fd58199ed77890813f7c22c.tar go-tangerine-38e273597c283e607fd58199ed77890813f7c22c.tar.gz go-tangerine-38e273597c283e607fd58199ed77890813f7c22c.tar.bz2 go-tangerine-38e273597c283e607fd58199ed77890813f7c22c.tar.lz go-tangerine-38e273597c283e607fd58199ed77890813f7c22c.tar.xz go-tangerine-38e273597c283e607fd58199ed77890813f7c22c.tar.zst go-tangerine-38e273597c283e607fd58199ed77890813f7c22c.zip |
log: log full level names instead of mispelled "EROR", "DBUG"
Diffstat (limited to 'log/format.go')
-rw-r--r-- | log/format.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/log/format.go b/log/format.go index 2a3790501..c61a4d82a 100644 --- a/log/format.go +++ b/log/format.go @@ -88,7 +88,7 @@ func TerminalFormat() Format { } b := &bytes.Buffer{} - lvl := strings.ToUpper(r.Lvl.String()) + lvl := r.Lvl.AlignedString() if atomic.LoadUint32(&locationEnabled) != 0 { // Log origin printing was requested, format the location path and line number location := fmt.Sprintf("%+v", r.Call) @@ -107,13 +107,13 @@ func TerminalFormat() Format { if color > 0 { fmt.Fprintf(b, "\x1b[%dm%s\x1b[0m[%s|%s]%s %s ", color, lvl, r.Time.Format(termTimeFormat), location, padding, r.Msg) } else { - fmt.Fprintf(b, "[%s] [%s|%s]%s %s ", lvl, r.Time.Format(termTimeFormat), location, padding, r.Msg) + fmt.Fprintf(b, "%s[%s|%s]%s %s ", lvl, r.Time.Format(termTimeFormat), location, padding, r.Msg) } } else { if color > 0 { fmt.Fprintf(b, "\x1b[%dm%s\x1b[0m[%s] %s ", color, lvl, r.Time.Format(termTimeFormat), r.Msg) } else { - fmt.Fprintf(b, "[%s] [%s] %s ", lvl, r.Time.Format(termTimeFormat), r.Msg) + fmt.Fprintf(b, "%s[%s] %s ", lvl, r.Time.Format(termTimeFormat), r.Msg) } } // try to justify the log output for short messages |