summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Dufresne <nicolas.dufresne@collabora.com>2016-09-19 12:06:17 -0400
committerNicolas Dufresne <nicolas.dufresne@collabora.com>2016-09-21 11:02:40 -0400
commit9357047eaf9460d76974cc781229a35789192cf1 (patch)
treeec3eb9fd4bcce4296c5e4f7a8f82cb7f7f5562c9
parent94a565269414dcae6a33c847298ab33cb50efd00 (diff)
waylandsink: Promote debug trace into error trace
Otherwise those error may go unseen making debugging much harder.
-rw-r--r--ext/wayland/gstwaylandsink.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/wayland/gstwaylandsink.c b/ext/wayland/gstwaylandsink.c
index d368a0678..41b9ca7cd 100644
--- a/ext/wayland/gstwaylandsink.c
+++ b/ext/wayland/gstwaylandsink.c
@@ -497,13 +497,13 @@ gst_wayland_sink_set_caps (GstBaseSink * bsink, GstCaps * caps)
invalid_format:
{
- GST_DEBUG_OBJECT (sink,
+ GST_ERROR_OBJECT (sink,
"Could not locate image format from caps %" GST_PTR_FORMAT, caps);
return FALSE;
}
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));
return FALSE;
}