mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 08:46:40 +00:00
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:
parent
81335bb811
commit
78bb15ec47
3 changed files with 7 additions and 2 deletions
|
@ -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>
|
||||
|
||||
* win32/common/libgstbase.def::
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit d9cd98b46aebaf143dc43d8563a3bff650be6a7e
|
||||
Subproject commit 593bb114c6f5c32b529aa6443be4c2d60d6484c7
|
|
@ -28,7 +28,7 @@ BACKGROUND_COLOR = (0, 0, 0)
|
|||
|
||||
# assumes GST_DEBUG_LOG_COLOR=1
|
||||
# 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_program_group = 2
|
||||
mark_log_group = 3
|
||||
|
|
Loading…
Reference in a new issue