From 1517c5800649004a385ea4fe5316048c9b50a38f Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Sat, 4 Sep 2021 22:52:23 +0200 Subject: [PATCH] feat: always force verbose logging for api4 testing --- Dalamud/Dalamud.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dalamud/Dalamud.cs b/Dalamud/Dalamud.cs index c429f3f33..8331c4e92 100644 --- a/Dalamud/Dalamud.cs +++ b/Dalamud/Dalamud.cs @@ -24,6 +24,7 @@ using Dalamud.Plugin.Ipc.Internal; using HarmonyLib; using Serilog; using Serilog.Core; +using Serilog.Events; #if DEBUG [assembly: InternalsVisibleTo("Dalamud.CorePlugin")] @@ -63,6 +64,9 @@ namespace Dalamud this.LogLevelSwitch = loggingLevelSwitch; + // TODO: Just for testing, force verbose logging + this.LogLevelSwitch.MinimumLevel = LogEventLevel.Verbose; + this.unloadSignal = new ManualResetEvent(false); this.unloadSignal.Reset();