waylandsink: Promote debug trace into error trace

Otherwise those error may go unseen making debugging much
harder.
This commit is contained in:
Nicolas Dufresne 2016-09-19 12:06:17 -04:00
parent 94a5652694
commit 9357047eaf

View file

@ -497,13 +497,13 @@ gst_wayland_sink_set_caps (GstBaseSink * bsink, GstCaps * caps)
invalid_format: invalid_format:
{ {
GST_DEBUG_OBJECT (sink, GST_ERROR_OBJECT (sink,
"Could not locate image format from caps %" GST_PTR_FORMAT, caps); "Could not locate image format from caps %" GST_PTR_FORMAT, caps);
return FALSE; return FALSE;
} }
unsupported_format: unsupported_format:
{ {
GST_DEBUG_OBJECT (sink, "Format %s is not available on the display", GST_ERROR_OBJECT (sink, "Format %s is not available on the display",
gst_wl_shm_format_to_string (format)); gst_wl_shm_format_to_string (format));
return FALSE; return FALSE;
} }