Пример #1
0
 /// <summary>
 /// Constructs the default set of logging colors, which if gray, green, yellow, and red foreground for log
 /// levels debug, info, warn, and error respectively.
 /// </summary>
 public LoggingColors()
 {
     Debug = ColorSetting.Foreground(ConsoleColor.Gray);
     Info  = ColorSetting.Foreground(ConsoleColor.Green);
     Warn  = ColorSetting.Foreground(ConsoleColor.Yellow);
     Error = ColorSetting.Foreground(ConsoleColor.Red);
 }