Fix logger formatting strings
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / main / java / org / opendaylight / controller / cluster / persistence / LocalSnapshotStore.java
index 0248d73d620f173dc9274ec6c36208f63e31fb82..3e170fd326c4f93272374e34ef2a74bbc2d5277b 100644 (file)
@@ -185,7 +185,7 @@ public class LocalSnapshotStore extends SnapshotStore {
         try {
             Files.move(temp.toPath(), actual.toPath(), StandardCopyOption.ATOMIC_MOVE);
         } catch (IOException e) {
-            LOG.warn("Failed to move %s to %s. Deleting %s..", temp, actual, temp, e);
+            LOG.warn("Failed to move {} to {}. Deleting {}..", temp, actual, temp, e);
             if (!temp.delete()) {
                 LOG.error("Failed to successfully delete file {}", temp);
             }