Skip to content

Commit

Permalink
fix logger object
Browse files Browse the repository at this point in the history
  • Loading branch information
mkardous-silabs committed Nov 8, 2023
1 parent f04149b commit 8cd3c95
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/python_testing/TC_ICDM_2_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@
import chip.clusters as Clusters
from matter_testing_support import MatterBaseTest, async_test_body, default_matter_test_main
from mobly import asserts
import logging

logger = logging.getLogger('PythonMatterControllerTEST')
logger.setLevel(logging.INFO)

class TC_ICDM_2_1(MatterBaseTest):
async def read_icdm_attribute_expect_success(self, endpoint, attribute):
Expand Down

0 comments on commit 8cd3c95

Please sign in to comment.