Thomas Vachuska

Fixed log message.

Change-Id: I1d6dcee6284399cdb30a40c4d2e7557ee0c7fee1
...@@ -150,7 +150,7 @@ public abstract class AbstractAccumulator<T> implements Accumulator<T> { ...@@ -150,7 +150,7 @@ public abstract class AbstractAccumulator<T> implements Accumulator<T> {
150 processItems(batch); 150 processItems(batch);
151 } 151 }
152 } catch (Exception e) { 152 } catch (Exception e) {
153 - log.warn("Unable to process batch due to {}", e); 153 + log.warn("Unable to process batch due to", e);
154 } 154 }
155 } else { 155 } else {
156 synchronized (AbstractAccumulator.this) { 156 synchronized (AbstractAccumulator.this) {
......