From cc6c18b5ad7ea46966ef776cec3451933f35c266 Mon Sep 17 00:00:00 2001 From: bao-qian Date: Thu, 30 Mar 2017 19:52:58 +0100 Subject: [PATCH] fix debug info --- Wox.Infrastructure/Logger/Log.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;