From 657771c89c2d909371ad1eef1da2c9689b90978d Mon Sep 17 00:00:00 2001 From: raul-marquez-csa Date: Wed, 3 Jul 2024 13:34:32 -0700 Subject: [PATCH] Downgrades logging.info to logging.debug --- src/python_testing/matter_testing_support.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python_testing/matter_testing_support.py b/src/python_testing/matter_testing_support.py index 860d2320496ff5..6c93bce080a375 100644 --- a/src/python_testing/matter_testing_support.py +++ b/src/python_testing/matter_testing_support.py @@ -278,7 +278,7 @@ def __call__(self, path: TypedAttributePath, transaction: SubscriptionTransactio asserts.assert_equal(path.AttributeType, self._expected_attribute, f"[AttributeChangeCallback] Attribute mismatch. Expected: {self._expected_attribute}, received: {path.AttributeType}") - logging.info(f"[AttributeChangeCallback] Attribute update callback for {path.AttributeType}") + logging.debug(f"[AttributeChangeCallback] Attribute update callback for {path.AttributeType}") q = (path, transaction) self._output.put(q)