Correctly parse categories with digits in them (fixes flump3dec, v4l2src messages)

This commit is contained in:
René Stadler 2008-01-21 13:24:02 +02:00 committed by Stefan Sauer
parent 93a1da46c9
commit e523019f50

View file

@ -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"([^:]+):"