From fa29f3c1180c9e4498cbb77296e25d4364598b67 Mon Sep 17 00:00:00 2001
From: Lluis Gifre <lluis.gifre@cttc.es>
Date: Wed, 23 Feb 2022 20:47:14 +0100
Subject: [PATCH] Code and MR cleanup

---
 .../service/drivers/openconfig/templates/NetworkInstances.py    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/device/service/drivers/openconfig/templates/NetworkInstances.py b/src/device/service/drivers/openconfig/templates/NetworkInstances.py
index b04824da7..647647022 100644
--- a/src/device/service/drivers/openconfig/templates/NetworkInstances.py
+++ b/src/device/service/drivers/openconfig/templates/NetworkInstances.py
@@ -24,7 +24,7 @@ XPATH_NETWORK_INSTANCES = "//ocni:network-instances/ocni:network-instance"
 def parse(xml_data : ET.Element) -> List[Tuple[str, Dict[str, Any]]]:
     response = []
     for xml_network_instance in xml_data.xpath(XPATH_NETWORK_INSTANCES, namespaces=NAMESPACES):
-        LOGGER.info('xml_network_instance = {:s}'.format(str(ET.tostring(xml_network_instance))))
+        #LOGGER.info('xml_network_instance = {:s}'.format(str(ET.tostring(xml_network_instance))))
 
         network_instance = {}
 
-- 
GitLab