From: Robert Varga Date: Thu, 12 May 2016 09:44:01 +0000 (+0200) Subject: Eliminate unneeded String.format() X-Git-Tag: release/boron~185 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=commitdiff_plain;h=1be53bac73eb01e7a47acc84e8ff860445366052 Eliminate unneeded String.format() Logger already supports formatting strings, no need to pre-format them. Change-Id: Iea96443126bad0ca483ec0cc775d081384028497 Signed-off-by: Robert Varga --- diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/DistributedDataStore.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/DistributedDataStore.java index ea7330ae23..0244eb3740 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/DistributedDataStore.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/DistributedDataStore.java @@ -265,7 +265,8 @@ public class DistributedDataStore implements DistributedDataStoreInterface, Sche } catch (Exception e){ lastException = e; Uninterruptibles.sleepUninterruptibly(100, TimeUnit.MILLISECONDS); - LOG.debug(String.format("Could not create actor %s because of %s - waiting for sometime before retrying (retry count = %d)", shardManagerId, e.getMessage(), i)); + LOG.debug("Could not create actor {} because of {} - waiting for sometime before retrying (retry count = {})", + shardManagerId, e.getMessage(), i); } }