We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1549a87 commit ee29e88Copy full SHA for ee29e88
vtr_flow/scripts/python_libs/vtr/log_parse.py
@@ -23,6 +23,8 @@ class ParsePattern:
23
def __init__(self, name, filename, regex_str, default_value=None):
24
self._name = name
25
self._filename = filename
26
+ # Look for the specified pattern somewhere in the line, but any characters
27
+ # can occur before and after it. Detailed in GitHub Issue #2743.
28
self._regex = re.compile(f'^.*{regex_str}.*$')
29
self._default_value = default_value
30
0 commit comments