Fix logger formatting strings 37/56537/1
authorRobert Varga <robert.varga@pantheon.tech>
Thu, 4 May 2017 15:51:43 +0000 (17:51 +0200)
committerRobert Varga <nite@hq.sk>
Thu, 4 May 2017 15:52:26 +0000 (15:52 +0000)
Fix %s/{} mixups.

Change-Id: I916996e17839a61802a83ddff31d162ac662f934
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/persistence/LocalSnapshotStore.java
opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardDataTree.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);
             }
index 4eeed882fa1a3ee63a7f9deea5a04d2957212b4b..e36bc98f99115b32c36d85010cbf088b98533225 100644 (file)
@@ -253,7 +253,7 @@ public class ShardDataTree extends ShardDataTreeTransactionParent {
         dataTree.commit(candidate);
         notifyListeners(candidate);
 
-        LOG.debug("{}: state snapshot applied in %s", logContext, elapsed);
+        LOG.debug("{}: state snapshot applied in {}", logContext, elapsed);
     }
 
     /**