Commit a0434323 authored by Pelle Johnsen's avatar Pelle Johnsen

Change option name from noColor to color

Still same default behavior (with color)
parent 7f888e3d
......@@ -47,9 +47,9 @@ var colors = []brush{
// consoleWriter implements LoggerInterface and writes messages to terminal.
type consoleWriter struct {
lg *log.Logger
Level int `json:"level"`
NoColor bool `json:"noColor"`
lg *log.Logger
Level int `json:"level"`
Color bool `json:"color"`
}
// NewConsole create ConsoleWriter returning as LoggerInterface.
......@@ -57,6 +57,7 @@ func NewConsole() Logger {
cw := &consoleWriter{
lg: log.New(os.Stdout, "", 0),
Level: LevelDebug,
Color: true,
}
return cw
}
......@@ -76,7 +77,7 @@ func (c *consoleWriter) WriteMsg(when time.Time, msg string, level int) error {
return nil
}
msg = formatLogTime(when) + msg
if runtime.GOOS == "windows" || c.NoColor {
if runtime.GOOS == "windows" || !c.Color {
c.lg.Println(msg)
return nil
}
......
......@@ -46,6 +46,6 @@ func TestConsole(t *testing.T) {
// Test console without color
func TestConsoleNoColor(t *testing.T) {
log := NewLogger(100)
log.SetLogger("console", `{"noColor":true}`)
log.SetLogger("console", `{"color":false}`)
testConsoleCalls(log)
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment