diff --git a/src/ServiceControl.Monitoring/Infrastructure/LoggingConfigurator.cs b/src/ServiceControl.Monitoring/Infrastructure/LoggingConfigurator.cs index bfe573bed1..1d5f5d02ef 100644 --- a/src/ServiceControl.Monitoring/Infrastructure/LoggingConfigurator.cs +++ b/src/ServiceControl.Monitoring/Infrastructure/LoggingConfigurator.cs @@ -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 {