Skip to content
Snippets Groups Projects
Commit 2e912188 authored by brinn's avatar brinn
Browse files

change: suppress warning log message when trying to remove a non-existing marker file

SVN: 7012
parent 1cd4cc53
No related branches found
No related tags found
No related merge requests found
......@@ -170,6 +170,10 @@ public final class DataMover
for (String fileName : PROCESS_MARKER_FILENAMES)
{
File markerFile = new File(fileName);
if (markerFile.exists() == false)
{
continue;
}
if (markerFile.delete() == false)
{
operationLog.warn("Couldn't delete process marker file "
......
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