From 78bb15ec47ce54d588a82a99513cfd5cebd4a77f Mon Sep 17 00:00:00 2001 From: Thijs Vermeir Date: Wed, 2 Jul 2008 12:23:12 +0000 Subject: [PATCH] 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 --- ChangeLog | 5 +++++ common | 2 +- tools/gst-plot-timeline.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index e80015f..61fb70d 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 d9cd98b..593bb11 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 a1e17f2..bd05871 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 -- 2.7.4