Commit 9e25cff4 authored by kesnar's avatar kesnar
Browse files

fix: remove debug loggers

parent 72a84768
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -83,7 +83,6 @@ def populate_endpoints(device : Device, driver : _Driver, monitoring_loops : Mon
    results_getconfig = driver.GetConfig(resources_to_get)

    errors : List[str] = list()
    LOGGER.warning(results_getconfig)
    for endpoint in results_getconfig:
        if len(endpoint) != 2:
            errors.append(ERROR_BAD_ENDPOINT.format(device_uuid, str(endpoint)))
+0 −2
Original line number Diff line number Diff line
@@ -201,8 +201,6 @@ class P4Driver(_Driver):
        chk_type("resources", resource_keys, list)

        with self.__lock:
            LOGGER.warning(resource_keys)
            LOGGER.warning(self.__get_resources(resource_keys))
            return self.__get_resources(resource_keys)

    @metered_subclass_method(METRICS_POOL)