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/logger.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/logger.go')
-rw-r--r-- | log/logger.go | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/log/logger.go b/log/logger.go index a7f7d9df7..15c83a9b2 100644 --- a/log/logger.go +++ b/log/logger.go @@ -24,7 +24,27 @@ const ( LvlTrace ) -// Returns the name of a Lvl +// Aligned returns a 5-character string containing the name of a Lvl. +func (l Lvl) AlignedString() string { + switch l { + case LvlTrace: + return "TRACE" + case LvlDebug: + return "DEBUG" + case LvlInfo: + return "INFO " + case LvlWarn: + return "WARN " + case LvlError: + return "ERROR" + case LvlCrit: + return "CRIT " + default: + panic("bad level") + } +} + +// Strings returns the name of a Lvl. func (l Lvl) String() string { switch l { case LvlTrace: |