Example #1
0
 public static void Normal(
     this ILog log,
     string value = null,
     ConsoleColors.Profile colorProfile = null)
 {
     log.Write(LogLevel.Normal, value, colorProfile);
 }
Example #2
0
 public static void Detailed(
     this ILog log,
     string value = null,
     ConsoleColors.Profile colorProfile = null)
 {
     log.Write(LogLevel.Detailed, value, colorProfile);
 }
Example #3
0
 public static void Write(
     this ILog log,
     LogLevel LogLevel,
     string value = null,
     ConsoleColors.Profile colorProfile = null)
 {
     log.Write(
         LogLevel,
         value,
         colorProfile?.Foreground,
         colorProfile?.Background);
 }