add some verbose logging for font loading

This commit is contained in:
goat 2020-09-08 20:55:37 +02:00
parent 84b1dabbd2
commit 6d9b9a5eda
2 changed files with 21 additions and 1 deletions

View file

@ -120,8 +120,11 @@ namespace Dalamud.Interface
/// This will invoke any <see cref="OnBuildFonts"/> handlers and ensure that any loaded fonts are
/// ready to be used on the next UI frame.
/// </summary>
public void RebuildFonts() =>
public void RebuildFonts()
{
Log.Verbose("[FONT] {0} plugin is initiating FONT REBUILD", this.namespaceName);
this.dalamud.InterfaceManager.RebuildFonts();
}
/// <summary>
/// Event that is fired when the plugin should open its configuration interface.