X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=tests%2Fstubpce%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Ftransportpce%2Fstubpce%2Ftopology%2FInterNodePath.java;h=b2781d37b1cbe916860eb21719656f9229c38dbf;hb=f635c4d0e4252050154b89d53bd7e658eaf75be8;hp=b1bd4239a9a3deaf52e0f8292667f8d26b73990f;hpb=25f39aab062c7d403a1ff1a698a389e6b64eb8f0;p=transportpce.git diff --git a/tests/stubpce/src/main/java/org/opendaylight/transportpce/stubpce/topology/InterNodePath.java b/tests/stubpce/src/main/java/org/opendaylight/transportpce/stubpce/topology/InterNodePath.java index b1bd4239a..b2781d37b 100644 --- a/tests/stubpce/src/main/java/org/opendaylight/transportpce/stubpce/topology/InterNodePath.java +++ b/tests/stubpce/src/main/java/org/opendaylight/transportpce/stubpce/topology/InterNodePath.java @@ -385,7 +385,7 @@ public class InterNodePath { LOG.info("firstnodeTpId is null !"); } } - LOG.info("getAToZDirectionEndBy result size : " + result.size() + "\n " + result.toString()); + LOG.info("getAToZDirectionEndBy result size : {}\n{}", result.size(),result.toString()); return result; } @@ -445,7 +445,7 @@ public class InterNodePath { } } } else { - LOG.info("getAToZDirectionEndBy size " + tmp.size()); + LOG.info("getAToZDirectionEndBy size : {}", tmp.size()); } return result; } @@ -473,7 +473,7 @@ public class InterNodePath { if (res != null && res instanceof TerminationPoint) { TerminationPoint tp = (TerminationPoint) res; if (tp != null && tp.getTpId().contains(beginBy)) { - LOG.info("tmp : " + tmp.toString()); + LOG.info("tmp : {}", tmp.toString()); result.add(tmp); } } @@ -481,7 +481,7 @@ public class InterNodePath { } } } - LOG.info("result size : " + result.size()); + LOG.info("result size : {}", result.size()); return result; } @@ -501,7 +501,7 @@ public class InterNodePath { path.fill(); nodepaths.add(path); } - LOG.info("nodepaths size : " + nodepaths.size()); + LOG.info("nodepaths size : {}", nodepaths.size()); build(superNode.isXpdrSrgAbsent(),superNode.getSuperNodeId(), zend); } }