feat: always force verbose logging for api4 testing

This commit is contained in:
goat 2021-09-04 22:52:23 +02:00
parent 309fe7226e
commit 1517c58006
No known key found for this signature in database
GPG key ID: F18F057873895461

View file

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