From 9e95ab8ff72730131485bcc94b749d031be14a86 Mon Sep 17 00:00:00 2001 From: Soreepeong Date: Sun, 18 Aug 2024 08:12:00 +0900 Subject: [PATCH] fix log --- Dalamud/Game/Gui/Dtr/DtrBar.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dalamud/Game/Gui/Dtr/DtrBar.cs b/Dalamud/Game/Gui/Dtr/DtrBar.cs index 4d328d78c..f37b3addc 100644 --- a/Dalamud/Game/Gui/Dtr/DtrBar.cs +++ b/Dalamud/Game/Gui/Dtr/DtrBar.cs @@ -157,7 +157,11 @@ internal sealed unsafe class DtrBar : IInternalDisposableService, IDtrBar this.entriesLock.EnterWriteLock(); var entry = new DtrBarEntry(this.configuration, title, null) { Text = text, OwnerPlugin = plugin }; this.entries.Add(entry); - Log.Debug("Adding entry: {what}; owner: {owner}", title, plugin); + Log.Debug( + "Adding entry: {what}; owner: {owner}({id})", + title, + plugin?.InternalName, + plugin?.EffectiveWorkingPluginId); // Add the entry to the end of the order list, if it's not there already. var dtrOrder = this.configuration.DtrOrder ??= [];