Change log level in MappingUtilsImpl
[transportpce.git] / common / src / main / java / org / opendaylight / transportpce / common / mapping / MappingUtilsImpl.java
index 0bbfbe8936030edd0158f2efdb90dd2d393c51aa..d1f7292c3ee4386925326e834b87fde6e2c28aca 100644 (file)
@@ -118,7 +118,7 @@ public class MappingUtilsImpl implements MappingUtils {
             Optional<Nodes> nodePortMapObject = readTx.read(LogicalDatastoreType.CONFIGURATION, nodePortMappingIID)
                     .get();
             if (nodePortMapObject.isPresent()) {
-                LOG.info("Found node {}", nodeId);
+                LOG.debug("Found node {}", nodeId);
                 Nodes node = nodePortMapObject.get();
                 mcCapabilities.addAll(node.nonnullMcCapabilities().values());
             }
@@ -128,7 +128,7 @@ public class MappingUtilsImpl implements MappingUtils {
             LOG.error("Request interrupted for node {} interrupted", nodeId, e);
             Thread.currentThread().interrupt();
         }
-        LOG.info("Capabilitities for node {}: {}", nodeId, mcCapabilities);
+        LOG.debug("Capabilitities for node {}: {}", nodeId, mcCapabilities);
         return mcCapabilities;
     }