diff --git a/ChangeLog b/ChangeLog index e80015f2d4..61fb70d4fe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-07-02 Thijs Vermeir + + * tools/gst-plot-timeline.py: + Fix parsing of log messages + 2008-07-01 Tim-Philipp Müller * win32/common/libgstbase.def:: diff --git a/common b/common index d9cd98b46a..593bb114c6 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit d9cd98b46aebaf143dc43d8563a3bff650be6a7e +Subproject commit 593bb114c6f5c32b529aa6443be4c2d60d6484c7 diff --git a/tools/gst-plot-timeline.py b/tools/gst-plot-timeline.py index a1e17f2c92..bd05871e3f 100755 --- a/tools/gst-plot-timeline.py +++ b/tools/gst-plot-timeline.py @@ -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