From: Robert Varga Date: Thu, 4 May 2017 15:51:43 +0000 (+0200) Subject: Fix logger formatting strings X-Git-Tag: release/carbon~35 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=commitdiff_plain;h=refs%2Fchanges%2F36%2F56536%2F2 Fix logger formatting strings Fix %s/{} mixups. Change-Id: I916996e17839a61802a83ddff31d162ac662f934 Signed-off-by: Robert Varga --- 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); } diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardDataTree.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardDataTree.java index 246f81272a..7cc40165d7 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardDataTree.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardDataTree.java @@ -254,7 +254,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); } /**