gst/gstmodule.c: changed debug category name from 'gst-python' to 'python'
authorEdward Hervey <bilboed@bilboed.com>
Wed, 10 Aug 2005 15:42:03 +0000 (15:42 +0000)
committerEdward Hervey <bilboed@bilboed.com>
Wed, 10 Aug 2005 15:42:03 +0000 (15:42 +0000)
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
gst/gstmodule.c

index 78e3638..3ac933a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2005-08-10  Edward Hervey  <edward@fluendo.com>
 
+       * 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.
index da9bb40..37a35d8 100644 (file)
@@ -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);