mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
feat: log Troubleshooting in OnInstalledPluginsChanged
This commit is contained in:
parent
f97df582c6
commit
01dffea4a4
1 changed files with 4 additions and 1 deletions
|
|
@ -353,6 +353,9 @@ namespace Dalamud
|
|||
try
|
||||
{
|
||||
this.PluginManager = new PluginManager(this);
|
||||
this.PluginManager.OnInstalledPluginsChanged += () =>
|
||||
Troubleshooting.LogTroubleshooting(this, this.InterfaceManager.IsReady);
|
||||
|
||||
Log.Information("[T3] PM OK!");
|
||||
|
||||
this.PluginManager.CleanupPlugins();
|
||||
|
|
@ -370,7 +373,7 @@ namespace Dalamud
|
|||
this.DalamudUi = new DalamudInterface(this);
|
||||
Log.Information("[T3] DUI OK!");
|
||||
|
||||
Troubleshooting.LogTroubleshooting(this, this.InterfaceManager != null);
|
||||
Troubleshooting.LogTroubleshooting(this, this.InterfaceManager.IsReady);
|
||||
|
||||
Log.Information("Dalamud is ready.");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue