Skip to content

Commit

Permalink
Downgrades logging.info to logging.debug
Browse files Browse the repository at this point in the history
  • Loading branch information
raul-marquez-csa committed Jul 3, 2024
1 parent 65f443f commit 657771c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python_testing/matter_testing_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 657771c

Please sign in to comment.