Skip to content
Snippets Groups Projects
Commit 46e01ebc authored by brinn's avatar brinn
Browse files

minor: improve error message

SVN: 18660
parent 9ad13daf
No related branches found
No related tags found
No related merge requests found
......@@ -85,10 +85,9 @@ public final class FileRenamingCallable implements Callable<Boolean>
} catch (IOExceptionUnchecked ex)
{
// return value does the job
operationLog
.warn(String
.format("Exception on setting access during moving path '%s' to directory '%s' (attempt %d).",
sourceFile, destinationFile, ++failures), ex.getCause());
operationLog.warn(String.format("Exception on setting access while moving "
+ "path '%s' to directory '%s' (attempt %d).", sourceFile,
destinationFile, ++failures), ex.getCause());
}
}
if (renamed == false)
......
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