Browse Source

Changed Debug and Verbose output colors

DarkGray is basically black on Linux (tested on Debian 8)
pull/808/head
Erlite GitHub 8 years ago
parent
commit
ce8b2a50c2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      docs/guides/getting_started/samples/intro/structure.cs

+ 1
- 1
docs/guides/getting_started/samples/intro/structure.cs View File

@@ -63,7 +63,7 @@ class Program
break;
case LogSeverity.Verbose:
case LogSeverity.Debug:
Console.ForegroundColor = ConsoleColor.DarkGray;
Console.ForegroundColor = ConsoleColor.DarkCyan;
break;
}
Console.WriteLine($"{DateTime.Now,-19} [{message.Severity,8}] {message.Source}: {message.Message}");


Loading…
Cancel
Save