From f3321e66e5f96e48412bc01e115b021752b1c48e Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Wed, 4 Sep 2019 18:00:48 -0500 Subject: [PATCH] Fixed #20 --- IPA.Loader/Logging/Logger.cs | 2 +- IPA.Loader/Logging/StandardLogger.cs | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/IPA.Loader/Logging/Logger.cs b/IPA.Loader/Logging/Logger.cs index 648e2767..a724adf7 100644 --- a/IPA.Loader/Logging/Logger.cs +++ b/IPA.Loader/Logging/Logger.cs @@ -59,7 +59,7 @@ namespace IPA.Logging /// /// A trace message. These are ignored *incredibly* early. /// - Trace = 32, + Trace = 64, /// /// A debug message. diff --git a/IPA.Loader/Logging/StandardLogger.cs b/IPA.Loader/Logging/StandardLogger.cs index 39dbc28e..655f5695 100644 --- a/IPA.Loader/Logging/StandardLogger.cs +++ b/IPA.Loader/Logging/StandardLogger.cs @@ -41,6 +41,11 @@ namespace IPA.Logging { defaultPrinters.AddRange(new [] { + new ColoredConsolePrinter() + { + Filter = LogLevel.TraceOnly, + Color = ConsoleColor.DarkMagenta, + }, new ColoredConsolePrinter() { Filter = LogLevel.DebugOnly,