We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52e1bee commit ced5987Copy full SHA for ced5987
esp_idf_monitor/base/line_matcher.py
@@ -23,7 +23,7 @@ class LineMatcher(object):
23
def __init__(self, print_filter):
24
# type: (str) -> None
25
self._dict = dict()
26
- self._re = re.compile(r'^(?:\033\[[01];?[0-9]+m?)?([EWIDV]) \([0-9]+\) ([^:]+): ')
+ self._re = re.compile(r'^(?:\033\[[01];?[0-9]+m?)?([EWIDV]) (?:\([0-9]+\)|\([0-9]{2}:[0-9]{2}:[0-9]{2}\.[0-9]{3}\)) ([^:]+): ')
27
items = print_filter.split()
28
if len(items) == 0:
29
self._dict['*'] = self.LEVEL_V # default is to print everything
0 commit comments