tools/gst-plot-timeline.py: Fix parsing of log messages

Original commit message from CVS:
* tools/gst-plot-timeline.py:
Fix parsing of log messages
This commit is contained in:
Thijs Vermeir 2008-07-02 12:23:12 +00:00
parent 81335bb811
commit 78bb15ec47
3 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2008-07-02 Thijs Vermeir <thijsvermeir@gmail.com>
* tools/gst-plot-timeline.py:
Fix parsing of log messages
2008-07-01 Tim-Philipp Müller <tim.muller at collabora co uk> 2008-07-01 Tim-Philipp Müller <tim.muller at collabora co uk>
* win32/common/libgstbase.def:: * win32/common/libgstbase.def::

2
common

@ -1 +1 @@
Subproject commit d9cd98b46aebaf143dc43d8563a3bff650be6a7e Subproject commit 593bb114c6f5c32b529aa6443be4c2d60d6484c7

View file

@ -28,7 +28,7 @@ BACKGROUND_COLOR = (0, 0, 0)
# assumes GST_DEBUG_LOG_COLOR=1 # assumes GST_DEBUG_LOG_COLOR=1
# timestamp pid thread level category,file,line,msg # timestamp pid thread level category,file,line,msg
mark_regex = re.compile (r'^(\d:\d\d:\d\d\.\d+) +\d+ 0?x?[0-9a-f]+ [A-Z]+ +([-a-zA-Z0-9_]+ )(.*)') mark_regex = re.compile (r'^(\d:\d\d:\d\d\.\d+) +\d+ +0?x?[0-9a-f]+ [A-Z]+ +([-a-zA-Z0-9_]+ )(.*)')
mark_timestamp_group = 1 mark_timestamp_group = 1
mark_program_group = 2 mark_program_group = 2
mark_log_group = 3 mark_log_group = 3