This commit is contained in:
Phillip Webb
2013-11-15 23:37:38 -08:00
parent 127da15c3c
commit 883fd9162f
22 changed files with 72 additions and 88 deletions

View File

@@ -94,8 +94,8 @@ public class SnakeTimer {
try {
tick();
}
catch (Throwable e) {
log.error("Caught to prevent timer from shutting down", e);
catch (Throwable ex) {
log.error("Caught to prevent timer from shutting down", ex);
}
}
}, TICK_DELAY, TICK_DELAY);