refactor: use new plugin log

This commit is contained in:
Anna
2023-10-14 19:32:10 -04:00
parent 45fe83f1b0
commit 357bc2bb6f
8 changed files with 13 additions and 20 deletions
+1 -2
View File
@@ -3,7 +3,6 @@ using System.Runtime.InteropServices;
using ChatTwo.Ui;
using Dalamud.Interface;
using Dalamud.Interface.GameFonts;
using Dalamud.Logging;
using ImGuiNET;
namespace ChatTwo;
@@ -151,7 +150,7 @@ internal sealed class PluginUi : IDisposable {
try {
component.Draw();
} catch (Exception ex) {
PluginLog.LogError(ex, "Error drawing component");
Plugin.Log.Error(ex, "Error drawing component");
}
}