Skip to content

Commit 42138c4

Browse files
Replace coloredlogs usage in matter_idl with just basicConfig. (project-chip#26376)
This makes the dependencies of matter_idl even smaller, generally only lark and click. Co-authored-by: Andrei Litvin <andreilitvin@google.com>
1 parent 3d21708 commit 42138c4

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

scripts/py_matter_idl/matter_idl/lint/lint_rules_parser.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,6 @@ def CreateParser(file_name: str):
299299
# This Parser is generally not intended to be run as a stand-alone binary.
300300
# The ability to run is for debug and to print out the parsed AST.
301301
import click
302-
import coloredlogs
303302

304303
# Supported log levels, mapping string values required for argument
305304
# parsing into logging constants
@@ -318,8 +317,10 @@ def CreateParser(file_name: str):
318317
help='Determines the verbosity of script output.')
319318
@click.argument('filename')
320319
def main(log_level, filename=None):
321-
coloredlogs.install(level=__LOG_LEVELS__[
322-
log_level], fmt='%(asctime)s %(levelname)-7s %(message)s')
320+
logging.basicConfig(
321+
level=__LOG_LEVELS__[log_level],
322+
format='%(asctime)s %(levelname)-7s %(message)s',
323+
)
323324

324325
logging.info("Starting to parse ...")
325326
data = CreateParser(filename).parse()

scripts/py_matter_idl/matter_idl/matter_idl_parser.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,6 @@ def CreateParser(skip_meta: bool = False):
541541
import pprint
542542

543543
import click
544-
import coloredlogs
545544

546545
# Supported log levels, mapping string values required for argument
547546
# parsing into logging constants
@@ -560,8 +559,10 @@ def CreateParser(skip_meta: bool = False):
560559
help='Determines the verbosity of script output.')
561560
@click.argument('filename')
562561
def main(log_level, filename=None):
563-
coloredlogs.install(level=__LOG_LEVELS__[
564-
log_level], fmt='%(asctime)s %(levelname)-7s %(message)s')
562+
logging.basicConfig(
563+
level=__LOG_LEVELS__[log_level],
564+
format='%(asctime)s %(levelname)-7s %(message)s',
565+
)
565566

566567
logging.info("Starting to parse ...")
567568
data = CreateParser().parse(open(filename).read(), file_name=filename)

scripts/py_matter_idl/matter_idl/xml_parser.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
import pprint
3434

3535
import click
36-
import coloredlogs
3736

3837
# Supported log levels, mapping string values required for argument
3938
# parsing into logging constants
@@ -59,8 +58,10 @@
5958
help='Do not pring output data (parsed data)')
6059
@ click.argument('filenames', nargs=-1)
6160
def main(log_level, no_print, filenames):
62-
coloredlogs.install(level=__LOG_LEVELS__[
63-
log_level], fmt='%(asctime)s %(levelname)-7s %(message)s')
61+
logging.basicConfig(
62+
level=__LOG_LEVELS__[log_level],
63+
format='%(asctime)s %(levelname)-7s %(message)s',
64+
)
6465

6566
logging.info("Starting to parse ...")
6667

0 commit comments

Comments
 (0)