From 78cacfe20b8789b96bb0cc4889e2f8fba6467f43 Mon Sep 17 00:00:00 2001 From: John Luo Date: Wed, 2 Dec 2015 17:13:50 -0800 Subject: [PATCH] Reacting to verbose rename --- src/Microsoft.Dnx.Watcher/CommandOutputLogger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.Dnx.Watcher/CommandOutputLogger.cs b/src/Microsoft.Dnx.Watcher/CommandOutputLogger.cs index 8c9e79f80c..ca0763fdc1 100644 --- a/src/Microsoft.Dnx.Watcher/CommandOutputLogger.cs +++ b/src/Microsoft.Dnx.Watcher/CommandOutputLogger.cs @@ -50,8 +50,8 @@ namespace Microsoft.Dnx.Watcher { switch (logLevel) { + case LogLevel.Trace: return "\x1b[35mtrace\x1b[39m"; case LogLevel.Debug: return "\x1b[35mdebug\x1b[39m"; - case LogLevel.Verbose: return "\x1b[35mverbose\x1b[39m"; case LogLevel.Information: return "\x1b[32minfo\x1b[39m"; case LogLevel.Warning: return "\x1b[33mwarn\x1b[39m"; case LogLevel.Error: return "\x1b[31mfail\x1b[39m";