From 90abdd2f232fb403497a45ed874b4f7609177956 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Thu, 18 Sep 2003 22:37:09 +0000 Subject: [PATCH] change a debug message to a g_warning(). Original commit message from CVS: change a debug message to a g_warning(). --- gst/gstpad.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gst/gstpad.c b/gst/gstpad.c index 3ad9971e23..3cc28489bc 100644 --- a/gst/gstpad.c +++ b/gst/gstpad.c @@ -3020,8 +3020,7 @@ gst_pad_send_event (GstPad *pad, GstEvent *event) if (GST_RPAD_EVENTHANDLER (rpad)) success = GST_RPAD_EVENTHANDLER (rpad) (GST_PAD_CAST (rpad), event); else { - GST_CAT_DEBUG (GST_CAT_EVENT, "there's no event function for pad %s:%s", - GST_DEBUG_PAD_NAME (rpad)); + g_warning ("pad %s:%s has no event handler", GST_DEBUG_PAD_NAME (rpad)); gst_event_unref (event); }