Slide 31
Slide 31 text
public static string GetLogLevel(LogLevel logLevel) => logLevel switch {
LogLevel.Trace => "Trace",
LogLevel.Debug => "Debug",
LogLevel.Information => "Information",
LogLevel.Warning => "Warning",
LogLevel.Error => "Error",
LogLevel.Critical => "Critical",
LogLevel.None => "None",
_ => throw new NotSupportedException()
};
Constant strings