final int value = counter.incrementAndGet();
log.info("{} - counter set to {}", this, value);
final FormattingResultLog resultLog = new FormattingResultLog();
resultLog.info("{} - counter value set to {} at {}", this, value, new Date());
if(value % 2 != 0) {
resultLog.warn("Counter value ({}) is not even", value);
}
return new Result(resultLog);
}