File tree 3 files changed +12
-9
lines changed
scripts/py_matter_idl/matter_idl
3 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -299,7 +299,6 @@ def CreateParser(file_name: str):
299
299
# This Parser is generally not intended to be run as a stand-alone binary.
300
300
# The ability to run is for debug and to print out the parsed AST.
301
301
import click
302
- import coloredlogs
303
302
304
303
# Supported log levels, mapping string values required for argument
305
304
# parsing into logging constants
@@ -318,8 +317,10 @@ def CreateParser(file_name: str):
318
317
help = 'Determines the verbosity of script output.' )
319
318
@click .argument ('filename' )
320
319
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
+ )
323
324
324
325
logging .info ("Starting to parse ..." )
325
326
data = CreateParser (filename ).parse ()
Original file line number Diff line number Diff line change @@ -541,7 +541,6 @@ def CreateParser(skip_meta: bool = False):
541
541
import pprint
542
542
543
543
import click
544
- import coloredlogs
545
544
546
545
# Supported log levels, mapping string values required for argument
547
546
# parsing into logging constants
@@ -560,8 +559,10 @@ def CreateParser(skip_meta: bool = False):
560
559
help = 'Determines the verbosity of script output.' )
561
560
@click .argument ('filename' )
562
561
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
+ )
565
566
566
567
logging .info ("Starting to parse ..." )
567
568
data = CreateParser ().parse (open (filename ).read (), file_name = filename )
Original file line number Diff line number Diff line change 33
33
import pprint
34
34
35
35
import click
36
- import coloredlogs
37
36
38
37
# Supported log levels, mapping string values required for argument
39
38
# parsing into logging constants
59
58
help = 'Do not pring output data (parsed data)' )
60
59
@ click .argument ('filenames' , nargs = - 1 )
61
60
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
+ )
64
65
65
66
logging .info ("Starting to parse ..." )
66
67
You can’t perform that action at this time.
0 commit comments