feat: some logging for WindowSystem

This commit is contained in:
goat 2021-04-05 23:58:33 +02:00
parent c823d50d37
commit 71e2562c66

View file

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