X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-clustering-commons%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fpersistence%2FLocalSnapshotStore.java;h=3e170fd326c4f93272374e34ef2a74bbc2d5277b;hb=7eef6d3dc0454034c0b60011b4c786a84f90edc9;hp=0248d73d620f173dc9274ec6c36208f63e31fb82;hpb=61a6a0d26fd981449461462cc0f43a0462c390c4;p=controller.git diff --git a/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/persistence/LocalSnapshotStore.java b/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/persistence/LocalSnapshotStore.java index 0248d73d62..3e170fd326 100644 --- a/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/persistence/LocalSnapshotStore.java +++ b/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/persistence/LocalSnapshotStore.java @@ -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); }