3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-11-17 05:20:14 +01:00

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 { try {
runnable.run(); runnable.run();
} catch (Exception e) { } 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 { } finally {
currentTaskThread = null; currentTaskThread = null;
} }