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();