From 2be54eaa89a10c935228c30cce4a7de8deb6a051 Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Fri, 3 Jan 2020 16:44:17 -0600 Subject: [PATCH] PrintFilter is now publicly readonly --- IPA.Loader/Logging/StandardLogger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPA.Loader/Logging/StandardLogger.cs b/IPA.Loader/Logging/StandardLogger.cs index 8291707b..b9c7c880 100644 --- a/IPA.Loader/Logging/StandardLogger.cs +++ b/IPA.Loader/Logging/StandardLogger.cs @@ -104,7 +104,7 @@ namespace IPA.Logging /// All levels defined by this filter will be sent to loggers. All others will be ignored. /// /// the global filter level - internal static LogLevel PrintFilter { get; set; } = LogLevel.All; + public static LogLevel PrintFilter { get; internal set; } = LogLevel.All; private static bool showTrace = false; private readonly List printers = new List();