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.
This commit is contained in:
Edward Hervey 2005-08-10 15:42:03 +00:00
parent 54936521fb
commit 762b581fcb
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2005-08-10 Edward Hervey <edward@fluendo.com> 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): * gst/gst.override: (pygst_debug_log):
gchar is way smaller than an int... resulting in negative line numbers gchar is way smaller than an int... resulting in negative line numbers
in debug. in debug.

View file

@ -170,7 +170,7 @@ init_gst (void)
pygst_add_constants (m, "GST_"); pygst_add_constants (m, "GST_");
/* Initialize debugging category */ /* 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); g_timeout_add_full (0, 100, python_do_pending_calls, NULL, NULL);