PluginManager: reduce loggging

This commit is contained in:
Sergey Ponomarev
2026-02-09 12:22:00 +02:00
parent 48820b718f
commit 8fc5eade11

View File

@ -761,13 +761,10 @@ public class PluginManager implements MainWindowListener
EventQueue.invokeLater( () -> {
for ( Plugin plugin : plugins )
{
long start = System.currentTimeMillis();
Log.debug( "Starting to initialize " + plugin );
try
{
plugin.initialize();
long end = System.currentTimeMillis();
Log.debug( "Took " + ( end - start ) + " ms. to load " + plugin );
Log.debug( "Initialized " + plugin );
}
catch ( Throwable e )
{