diff --git a/Wox.Infrastructure/Logger/Log.cs b/Wox.Infrastructure/Logger/Log.cs index c428c5c134..48691866c1 100644 --- a/Wox.Infrastructure/Logger/Log.cs +++ b/Wox.Infrastructure/Logger/Log.cs @@ -27,7 +27,7 @@ namespace Wox.Infrastructure.Logger #if DEBUG var rule = new LoggingRule("*", LogLevel.Debug, target); #else - var rule = new LoggingRule("*", LogLevel.Debug, target); + var rule = new LoggingRule("*", LogLevel.Info, target); #endif configuration.LoggingRules.Add(rule); LogManager.Configuration = configuration;