Browse Source

PrintFilter is now publicly readonly

pull/46/head
Anairkoen Schno 4 years ago
parent
commit
55529f9aaa
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      IPA.Loader/Logging/StandardLogger.cs

+ 1
- 1
IPA.Loader/Logging/StandardLogger.cs View File

@ -104,7 +104,7 @@ namespace IPA.Logging
/// All levels defined by this filter will be sent to loggers. All others will be ignored.
/// </summary>
/// <value>the global filter level</value>
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<LogPrinter> printers = new List<LogPrinter>();


Loading…
Cancel
Save