Commit e25b3975 authored by Karsten Loesing's avatar Karsten Loesing
Browse files

Fix logging bug.

parent 3bbc4db4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@ public final class Scheduler implements ThreadFactory {
    try {
      gracePeriodMinutes = conf.getLong(Key.ShutdownGraceWaitMinutes);
    } catch (ConfigurationException ce) {
      logger.warn("Cannot read grace period: {}", ce);
      logger.warn("Cannot read grace period.", ce);
      gracePeriodMinutes = 10L;
    }
    List<Callable<Object>> runOnceMains = new ArrayList<>();