Print a log message when Penumbra finished loading containing version and hash.

This commit is contained in:
Ottermandias 2022-06-18 11:11:55 +02:00
parent 018be13216
commit c097b634ab

View file

@ -152,6 +152,10 @@ public class Penumbra : IDisposable
{
PluginLog.Error( $"{ImcExceptions} IMC Exceptions thrown. Please repair your game files." );
}
else
{
PluginLog.Information( $"Penumbra Version {Version}, Commit #{CommitHash} successfully Loaded." );
}
}
private void SetupInterface( out ConfigWindow cfg, out LaunchButton btn, out WindowSystem system )