Change LOG level in PCE
[transportpce.git] / pce / src / main / java / org / opendaylight / transportpce / pce / networkanalyzer / PceLink.java
index 56aaddf50df789c2ee6b63a96565704ad5415749..7eb06d8cbd3e463d7aac79a772a51c88233c6a20 100644 (file)
@@ -75,7 +75,7 @@ public class PceLink implements Serializable {
     private static final double LOWER_BOUND_OSNR = 0.1;
 
     public PceLink(Link link, PceNode source, PceNode dest) {
-        LOG.info("PceLink: : PceLink start ");
+        LOG.debug("PceLink: : PceLink start ");
 
         this.linkId = link.getLinkId();
 
@@ -153,7 +153,7 @@ public class PceLink implements Serializable {
                 return 1L;
             }
             tmp += entry.getValue().getSRLGLength().doubleValue() / CELERITY;
-            LOG.info("In PceLink: The latency of link {} == {}", link.getLinkId(), tmp);
+            LOG.debug("In PceLink: The latency of link {} == {}", link.getLinkId(), tmp);
         }
         return (long) Math.ceil(tmp);
     }
@@ -390,7 +390,7 @@ public class PceLink implements Serializable {
 
         if ((this.availableBandwidth >= neededBW)
             && ((neededType == null) || (neededType.equals(otnLinkType)))) {
-            LOG.info("PceLink: Selected Link {} has available bandwidth and is eligible for {} creation ",
+            LOG.debug("PceLink: Selected Link {} has available bandwidth and is eligible for {} creation ",
                 linkId, serviceType);
         }