gstbus: change log level of repeated messages from INFO to DEBUG

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/722>
This commit is contained in:
Fredrik Pålsson 2020-12-12 22:28:46 +00:00 committed by Fredrik Pålsson
parent a06dcc3e38
commit cd978ffd6c

View file

@ -610,10 +610,10 @@ gst_bus_timed_pop_filtered (GstBus * bus, GstClockTime timeout,
g_mutex_lock (&bus->priv->queue_lock); g_mutex_lock (&bus->priv->queue_lock);
if (ret == 0) { if (ret == 0) {
GST_INFO_OBJECT (bus, "timed out, breaking loop"); GST_DEBUG_OBJECT (bus, "timed out, breaking loop");
break; break;
} else { } else {
GST_INFO_OBJECT (bus, "we got woken up, recheck for message"); GST_DEBUG_OBJECT (bus, "we got woken up, recheck for message");
} }
} }