From 762b581fcb34585d2379ab5f36885db83ebd50db Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Wed, 10 Aug 2005 15:42:03 +0000 Subject: [PATCH] gst/gstmodule.c: changed debug category name from 'gst-python' to 'python' Original commit message from CVS: * gst/gstmodule.c: (init_gst): changed debug category name from 'gst-python' to 'python' * gst/gst.override: (pygst_debug_log): gchar is way smaller than an int... resulting in negative line numbers in debug. --- ChangeLog | 3 +++ gst/gstmodule.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 78e3638291..3ac933ac72 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2005-08-10 Edward Hervey + * gst/gstmodule.c: (init_gst): + changed debug category name from 'gst-python' to 'python' + * gst/gst.override: (pygst_debug_log): gchar is way smaller than an int... resulting in negative line numbers in debug. diff --git a/gst/gstmodule.c b/gst/gstmodule.c index da9bb40d75..37a35d870e 100644 --- a/gst/gstmodule.c +++ b/gst/gstmodule.c @@ -170,7 +170,7 @@ init_gst (void) pygst_add_constants (m, "GST_"); /* Initialize debugging category */ - GST_DEBUG_CATEGORY_INIT (gst_python, "gst-python", 0, "GStreamer python bindings"); + GST_DEBUG_CATEGORY_INIT (gst_python, "python", 0, "GStreamer python bindings"); g_timeout_add_full (0, 100, python_do_pending_calls, NULL, NULL);