13
0
geforkt von Mirrors/Velocity

Print exception in task

Dieser Commit ist enthalten in:
Andrew Steinborn 2018-12-16 13:41:23 -05:00
Ursprung ca915a44a9
Commit 5be64565e9

Datei anzeigen

@ -173,7 +173,7 @@ public class VelocityScheduler implements Scheduler {
try {
runnable.run();
} catch (Exception e) {
Log.logger.error("Exception in task {} by plugin {}", runnable, plugin);
Log.logger.error("Exception in task {} by plugin {}", runnable, plugin, e);
} finally {
currentTaskThread = null;
}