Eliminate unneeded String.format() 00/38800/3
authorRobert Varga <rovarga@cisco.com>
Thu, 12 May 2016 09:44:01 +0000 (11:44 +0200)
committerTom Pantelis <tpanteli@brocade.com>
Fri, 13 May 2016 11:24:59 +0000 (11:24 +0000)
Logger already supports formatting strings, no need to pre-format
them.

Change-Id: Iea96443126bad0ca483ec0cc775d081384028497
Signed-off-by: Robert Varga <rovarga@cisco.com>
opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/DistributedDataStore.java

index ea7330ae23316a36637081142480a8acc781ba0c..0244eb37407d53a7de46a44427e4ef571cd5bf49 100644 (file)
@@ -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);
             }
         }