From cec382dfed1fa68f5ee3bb61acd4b0ea309d616f Mon Sep 17 00:00:00 2001 From: Haselnussbomber Date: Wed, 20 Sep 2023 19:53:45 +0200 Subject: [PATCH] Switch to ModuleLog in Window --- Dalamud/Interface/Windowing/Window.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dalamud/Interface/Windowing/Window.cs b/Dalamud/Interface/Windowing/Window.cs index 73a14db79..277fb46c8 100644 --- a/Dalamud/Interface/Windowing/Window.cs +++ b/Dalamud/Interface/Windowing/Window.cs @@ -3,9 +3,9 @@ using System.Numerics; using Dalamud.Configuration.Internal; using Dalamud.Game.ClientState.Keys; +using Dalamud.Logging.Internal; using FFXIVClientStructs.FFXIV.Client.UI; using ImGuiNET; -using Serilog; namespace Dalamud.Interface.Windowing; @@ -14,6 +14,8 @@ namespace Dalamud.Interface.Windowing; /// public abstract class Window { + private static readonly ModuleLog Log = new("WindowSystem"); + private static bool wasEscPressedLastFrame = false; private bool internalLastIsOpen = false;