mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
Correctly parse categories with digits in them (fixes flump3dec, v4l2src messages)
This commit is contained in:
parent
93a1da46c9
commit
e523019f50
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ def default_log_line_regex_ ():
|
|||
THREAD = r"(0x[0-9a-f]+) +" #r"\((0x[0-9a-f]+) - "
|
||||
# "0:00:00.777913000 "
|
||||
TIME = r"([0-9]+:[0-9][0-9]:[0-9][0-9]\.[0-9]+) +"
|
||||
CATEGORY = "([A-Za-z_-]+) +" # "GST_REFCOUNTING ", "flacdec "
|
||||
CATEGORY = "([A-Za-z0-9_-]+) +" # "GST_REFCOUNTING ", "flacdec "
|
||||
# " 3089 "
|
||||
PID = r"([0-9]+) +"
|
||||
FILENAME = r"([^:]+):"
|
||||
|
|
Loading…
Reference in a new issue