mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
fix log
This commit is contained in:
parent
0a8f9b73fb
commit
9e95ab8ff7
1 changed files with 5 additions and 1 deletions
|
|
@ -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 ??= [];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue