tools/gst-plot-timeline.py: Fix parsing of log messages
authorThijs Vermeir <thijsvermeir@gmail.com>
Wed, 2 Jul 2008 12:23:12 +0000 (12:23 +0000)
committerThijs Vermeir <thijsvermeir@gmail.com>
Wed, 2 Jul 2008 12:23:12 +0000 (12:23 +0000)
Original commit message from CVS:
* tools/gst-plot-timeline.py:
Fix parsing of log messages

ChangeLog
common
tools/gst-plot-timeline.py

index e80015f..61fb70d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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::
diff --git a/common b/common
index d9cd98b..593bb11 160000 (submodule)
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit d9cd98b46aebaf143dc43d8563a3bff650be6a7e
+Subproject commit 593bb114c6f5c32b529aa6443be4c2d60d6484c7
index a1e17f2..bd05871 100755 (executable)
@@ -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