Change DebugLevel color to gray

This commit is contained in:
Lorenzo Villani 2015-02-20 16:32:47 +01:00 committed by Simon Eskildsen
parent 2ec723cd5b
commit 9c9013ac4f
1 changed files with 3 additions and 0 deletions

View File

@ -15,6 +15,7 @@ const (
green = 32
yellow = 33
blue = 34
gray = 37
)
var (
@ -75,6 +76,8 @@ func (f *TextFormatter) Format(entry *Entry) ([]byte, error) {
func printColored(b *bytes.Buffer, entry *Entry, keys []string) {
var levelColor int
switch entry.Level {
case DebugLevel:
levelColor = gray
case WarnLevel:
levelColor = yellow
case ErrorLevel, FatalLevel, PanicLevel: