mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
Data: fix parsing of lines missing filename or function name
E.g. ffmpeg.
This commit is contained in:
parent
c8dc50da40
commit
33a8efa93d
1 changed files with 2 additions and 2 deletions
|
@ -145,9 +145,9 @@ def default_log_line_regex_ ():
|
|||
CATEGORY = "([A-Za-z0-9_-]+)\s+" # "GST_REFCOUNTING ", "flacdec "
|
||||
# " 3089 "
|
||||
PID = r"(\d+)\s+"
|
||||
FILENAME = r"([^:]+):"
|
||||
FILENAME = r"([^:]*):"
|
||||
LINE = r"(\d+):"
|
||||
FUNCTION = "([A-Za-z0-9_]+):"
|
||||
FUNCTION = "([A-Za-z0-9_]*):"
|
||||
# FIXME: When non-g(st)object stuff is logged with *_OBJECT (like
|
||||
# buffers!), the address is printed *without* <> brackets!
|
||||
OBJECT = "(?:<([^>]+)> )?"
|
||||
|
|
Loading…
Reference in a new issue