diff --git a/src/device/service/drivers/gnmi_nokia_srlinux/handlers/_Handler.py b/src/device/service/drivers/gnmi_nokia_srlinux/handlers/_Handler.py index d20c77b1165decce7ea07243beb782a6b749734b..a6188cc720ae3c1e7f6dfb8f36a1486f1b15a098 100644 --- a/src/device/service/drivers/gnmi_nokia_srlinux/handlers/_Handler.py +++ b/src/device/service/drivers/gnmi_nokia_srlinux/handlers/_Handler.py @@ -20,7 +20,7 @@ class _Handler: raise NotImplementedError() def get_path(self) -> str: - # Retrieve the OpenConfig path schema used to interrogate the device + # Retrieve the Nokia path schema used to interrogate the device raise NotImplementedError() def compose(self, resource_key : str, resource_value : Dict, delete : bool = False) -> Tuple[str, str]: diff --git a/src/device/service/drivers/gnmi_nokia_srlinux/handlers/__init__.py b/src/device/service/drivers/gnmi_nokia_srlinux/handlers/__init__.py index 6c8c4555926daa437b6b472ceb97db7ce54de810..dfbd2aa2e743d4fac561a10e0d3b3016b7e4cdb3 100644 --- a/src/device/service/drivers/gnmi_nokia_srlinux/handlers/__init__.py +++ b/src/device/service/drivers/gnmi_nokia_srlinux/handlers/__init__.py @@ -109,7 +109,7 @@ def get_handler( elif path is not None: path_schema = get_schema(path) path_schema = PATH_MAPPER.get(path_schema, path_schema) - LOGGER.debug("Original path: %s, Schema path: %s", path, path_schema) + #LOGGER.debug("Original path: %s, Schema path: %s", path, path_schema) handler = PATH_TO_HANDLER.get(path_schema) LOGGER.debug("Mapped path schema: %s", path_schema) if handler is None and raise_if_not_found: