From: guillaume.lambert Date: Thu, 22 Feb 2024 16:09:18 +0000 (+0100) Subject: Fix some TAPI ConnectivityUtils log msg X-Git-Tag: 9.0.0~48^2 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=transportpce.git;a=commitdiff_plain;h=4dde94b79766072a2381fa81db68d99fd0ae2915 Fix some TAPI ConnectivityUtils log msg JIRA: TRNSPRTPCE-734 Signed-off-by: guillaume.lambert Change-Id: Iab258e658613bce1cc4e4962a2b2456aa8182edf --- diff --git a/tapi/src/main/java/org/opendaylight/transportpce/tapi/connectivity/ConnectivityUtils.java b/tapi/src/main/java/org/opendaylight/transportpce/tapi/connectivity/ConnectivityUtils.java index 2f5780910..8e803a65a 100644 --- a/tapi/src/main/java/org/opendaylight/transportpce/tapi/connectivity/ConnectivityUtils.java +++ b/tapi/src/main/java/org/opendaylight/transportpce/tapi/connectivity/ConnectivityUtils.java @@ -1406,7 +1406,7 @@ public final class ConnectivityUtils { LOG.info("SIP name = {}", String.join("+", tp.getTpNodeId(), TapiStringConstants.MC, tp.getTpId())); for (ServiceInterfacePoint sip:this.sipMap.values()) { if (!sip.getUuid().equals(sipUuid)) { - LOG.info("SIP {} doesn match sipname {}", sip.getUuid().getValue(), sipUuid.getValue()); + LOG.debug("SIP {} does not match sipname {}", sip.getUuid().getValue(), sipUuid.getValue()); continue; } zendUuid = sip.getUuid(); @@ -1455,7 +1455,7 @@ public final class ConnectivityUtils { } for (ServiceInterfacePoint sip:this.sipMap.values()) { if (!sip.getUuid().equals(sipUuid)) { - LOG.info("SIP {} doesn match sipname {}", sip.getUuid().getValue(), sipUuid.getValue()); + LOG.debug("SIP {} does not match sipname {}", sip.getUuid().getValue(), sipUuid.getValue()); continue; } zendUuid = sip.getUuid(); @@ -1483,7 +1483,7 @@ public final class ConnectivityUtils { tp.getTpId())); for (ServiceInterfacePoint sip:this.sipMap.values()) { if (!sip.getUuid().equals(sipUuid)) { - LOG.info("SIP {} doesn match sipname {}", sip.getUuid().getValue(), sipUuid.getValue()); + LOG.debug("SIP {} does not match sipname {}", sip.getUuid().getValue(), sipUuid.getValue()); continue; } aendUuid = sip.getUuid(); @@ -1532,7 +1532,7 @@ public final class ConnectivityUtils { } for (ServiceInterfacePoint sip:this.sipMap.values()) { if (!sip.getUuid().equals(sipUuid)) { - LOG.info("SIP {} doesn match sipname {}", sip.getUuid().getValue(), sipUuid.getValue()); + LOG.debug("SIP {} does not match sipname {}", sip.getUuid().getValue(), sipUuid.getValue()); continue; } aendUuid = sip.getUuid();