From c62533f76195c0f6c2b1c8985c3590895febfe57 Mon Sep 17 00:00:00 2001 From: Olivier Poitrey Date: Thu, 17 May 2018 16:35:57 -0700 Subject: [PATCH] Fix ConsoleWriter test --- console.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console.go b/console.go index e9a0d84..c957571 100644 --- a/console.go +++ b/console.go @@ -104,7 +104,7 @@ func formatTime(t interface{}) string { u, _ := t.Int64() return time.Unix(u, 0).Format(time.RFC3339) } - return "" + return "" } func colorize(s interface{}, color int, enabled bool) string {