mirror of
https://github.com/igniterealtime/Spark.git
synced 2026-03-30 19:34:32 +00:00
PluginManager: reduce loggging
This commit is contained in:
@ -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 )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user