From e8abd7c23f1025b2d03ae2a4d15a9d5fb1bf5a27 Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Fri, 11 Jun 2021 12:43:31 +0800 Subject: [PATCH] fix a variable name in Release --- Flow.Launcher.Infrastructure/Logger/Log.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher.Infrastructure/Logger/Log.cs b/Flow.Launcher.Infrastructure/Logger/Log.cs index f39430c65..1784726d9 100644 --- a/Flow.Launcher.Infrastructure/Logger/Log.cs +++ b/Flow.Launcher.Infrastructure/Logger/Log.cs @@ -34,7 +34,7 @@ namespace Flow.Launcher.Infrastructure.Logger #if DEBUG var rule = new LoggingRule("*", LogLevel.Debug, fileTargetASyncWrapper); #else - var rule = new LoggingRule("*", LogLevel.Info, target); + var rule = new LoggingRule("*", LogLevel.Info, fileTargetASyncWrapper); #endif configuration.LoggingRules.Add(rule); LogManager.Configuration = configuration;