mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-22 08:29:18 +01:00
feat: some logging for WindowSystem
This commit is contained in:
parent
c823d50d37
commit
71e2562c66
1 changed files with 5 additions and 0 deletions
|
|
@ -3,6 +3,7 @@ using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
||||||
using ImGuiNET;
|
using ImGuiNET;
|
||||||
|
using Serilog;
|
||||||
|
|
||||||
namespace Dalamud.Interface.Windowing
|
namespace Dalamud.Interface.Windowing
|
||||||
{
|
{
|
||||||
|
|
@ -68,6 +69,10 @@ namespace Dalamud.Interface.Windowing
|
||||||
|
|
||||||
foreach (var window in this.windows)
|
foreach (var window in this.windows)
|
||||||
{
|
{
|
||||||
|
#if DEBUG
|
||||||
|
//Log.Verbose($"[WS{(hasNamespace ? "/" + this.Namespace : string.Empty)}] Drawing {window.WindowName}");
|
||||||
|
#endif
|
||||||
|
|
||||||
window.DrawInternal();
|
window.DrawInternal();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue