Skip to content
Snippets Groups Projects
Commit 8f204088 authored by buczekp's avatar buczekp
Browse files

[LMS-1840] reverted changes in logging

SVN: 18328
parent 1cb7a6b9
No related branches found
No related tags found
No related merge requests found
...@@ -38,8 +38,8 @@ public class BatchOperationExecutor ...@@ -38,8 +38,8 @@ public class BatchOperationExecutor
{ {
final List<S> batch = allEntities.subList(startIndex, endIndex); final List<S> batch = allEntities.subList(startIndex, endIndex);
strategy.execute(batch); strategy.execute(batch);
operationLog.info(String.format("%s %s progress: %d-%d/%d", strategy.getEntityName(), operationLog.info(String.format("%s %s progress: %d/%d", strategy.getEntityName(),
strategy.getOperationName(), startIndex, endIndex, maxIndex)); strategy.getOperationName(), endIndex, maxIndex));
if (operationLog.isDebugEnabled()) if (operationLog.isDebugEnabled())
{ {
operationLog.debug(getMemoryUsageMessage()); operationLog.debug(getMemoryUsageMessage());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment