diff --git a/src/device/service/drivers/openconfig/templates/NetworkInstances.py b/src/device/service/drivers/openconfig/templates/NetworkInstances.py index b04824da706abf310fbc82a7547c525a8ffa632f..647647022133ef7bc3d8ed44d1ac3b6fc6bf79d0 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 = {}