From: Wim Taymans Date: Fri, 18 Jun 2010 14:56:19 +0000 (+0200) Subject: rtspsrc: make some errors as warnings X-Git-Tag: 1.19.3~509^2~8387 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=651c82a01f9fc069dc28d52078d1253860cd4a9d;p=platform%2Fupstream%2Fgstreamer.git rtspsrc: make some errors as warnings Avoid spamming the testsuite with these error debug lines. --- diff --git a/gst/rtsp/gstrtspsrc.c b/gst/rtsp/gstrtspsrc.c index f6da483..db5429c 100644 --- a/gst/rtsp/gstrtspsrc.c +++ b/gst/rtsp/gstrtspsrc.c @@ -5310,12 +5310,12 @@ gst_rtspsrc_open (GstRTSPSrc * src) /* ERRORS */ no_sdp: { - GST_ERROR_OBJECT (src, "can't get sdp"); + GST_WARNING_OBJECT (src, "can't get sdp"); return FALSE; } open_failed: { - GST_ERROR_OBJECT (src, "can't setup streaming from sdp"); + GST_WARNING_OBJECT (src, "can't setup streaming from sdp"); return FALSE; } }