Skip to content

Commit

Permalink
Align Monitoring default log level with other instances
Browse files Browse the repository at this point in the history
  • Loading branch information
bording authored and danielmarbach committed Mar 20, 2024
1 parent 99c1f38 commit a03349a
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -91,10 +91,10 @@ public static void Configure(Settings settings, bool logToConsole)

public static LogLevel InitializeLevel()
{
var level = LogLevel.Warn;
var level = LogLevel.Info;
try
{
level = LogLevel.FromString(SettingsReader.Read(Settings.SettingsRootNamespace, LogLevelKey, LogLevel.Warn.Name));
level = LogLevel.FromString(SettingsReader.Read(Settings.SettingsRootNamespace, LogLevelKey, LogLevel.Info.Name));
}
catch
{
Expand Down

0 comments on commit a03349a

Please sign in to comment.