diff --git a/Dalamud/Interface/Windowing/WindowSystem.cs b/Dalamud/Interface/Windowing/WindowSystem.cs index 9e331dfb4..a42b51a18 100644 --- a/Dalamud/Interface/Windowing/WindowSystem.cs +++ b/Dalamud/Interface/Windowing/WindowSystem.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.Linq; using ImGuiNET; +using Serilog; namespace Dalamud.Interface.Windowing { @@ -68,6 +69,10 @@ namespace Dalamud.Interface.Windowing foreach (var window in this.windows) { +#if DEBUG + //Log.Verbose($"[WS{(hasNamespace ? "/" + this.Namespace : string.Empty)}] Drawing {window.WindowName}"); +#endif + window.DrawInternal(); }