We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e870dd2 commit 44a90e5Copy full SHA for 44a90e5
Flow.Launcher.Infrastructure/Logger/Log.cs
@@ -66,11 +66,13 @@ static Log()
66
public static void UseDebugLogLevel()
67
{
68
LogManager.Configuration.FindRuleByName("file").SetLoggingLevels(LogLevel.Debug, LogLevel.Fatal);
69
+ Info(nameof(Logger), "Using DEBUG log level.");
70
}
71
72
public static void UseInfoLogLevel()
73
74
LogManager.Configuration.FindRuleByName("file").SetLoggingLevels(LogLevel.Info, LogLevel.Fatal);
75
+ Info(nameof(Logger), "Using INFO log level.");
76
77
78
private static void LogFaultyFormat(string message)
0 commit comments