Merge pull request #131 from lvillani/debuglevel-gray

Change DebugLevel color to gray
This commit is contained in:
Simon Eskildsen 2015-03-09 11:39:16 -04:00
commit bbf1b22f08
1 changed files with 3 additions and 0 deletions

View File

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