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

[DMV-39] minor: coherent logging messages

SVN: 14676
parent 405088d7
No related branches found
No related tags found
No related merge requests found
......@@ -343,12 +343,12 @@ public final class DataMover
{
if (prefixBeforeOrNull != null)
{
operationLog.info(prefixBeforeOrNull + ": " + item);
operationLog.info(prefixBeforeOrNull + " " + item);
}
originalHandler.handle(item);
if (prefixAfterOrNull != null)
{
operationLog.info(prefixAfterOrNull + ": " + item);
operationLog.info(prefixAfterOrNull + " " + item);
}
}
......
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