plugin manager: fix two log format strings

This commit is contained in:
Adam
2019-09-02 22:41:26 -04:00
parent d5a6007944
commit 17634bb2a1

View File

@@ -141,7 +141,7 @@ public class PluginManager
}
catch (PluginInstantiationException e)
{
log.warn("Error during starting/stopping plugin {}. {}", plugin.getClass().getSimpleName(), e);
log.warn("Error during starting/stopping plugin {}", plugin.getClass().getSimpleName(), e);
}
}));
}
@@ -210,7 +210,7 @@ public class PluginManager
}
catch (PluginInstantiationException ex)
{
log.warn("Unable to start plugin {}. {}", plugin.getClass().getSimpleName(), ex);
log.warn("Unable to start plugin {}", plugin.getClass().getSimpleName(), ex);
plugins.remove(plugin);
}