From b5016453f42096063d92c8bf211bbe74a14909fa Mon Sep 17 00:00:00 2001 From: Kinsi Date: Thu, 21 Jul 2022 07:37:06 +0200 Subject: [PATCH] Update StandardLogger.cs --- IPA.Loader/Logging/StandardLogger.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IPA.Loader/Logging/StandardLogger.cs b/IPA.Loader/Logging/StandardLogger.cs index 50bb727b..8289454d 100644 --- a/IPA.Loader/Logging/StandardLogger.cs +++ b/IPA.Loader/Logging/StandardLogger.cs @@ -124,7 +124,7 @@ namespace IPA.Logging syncLogging = SelfConfig.Debug_.SyncLogging_; if(SelfConfig.CommandLineValues.WriteLogs && !addedFilePrinter) { addedFilePrinter = true; - AddDefaultPrinter(new GZFilePrinter()); + AddDefaultPrinter(new GlobalLogFilePrinter()); } } @@ -459,4 +459,4 @@ namespace IPA.Logging _ => throw new InvalidOperationException() }; } -} \ No newline at end of file +}