Change log to logError, as it would be an exception.

This commit is contained in:
tastybento 2018-11-23 08:22:21 -08:00
parent ff2983629d
commit 5f57417ccc

View File

@ -141,7 +141,7 @@ public class AddonsManager {
// Run the onLoad.
addon.onLoad();
} catch (Exception e) {
plugin.log(e.getMessage());
plugin.logError(e.getMessage());
}
}