Skip to content

Commit

Permalink
gstbus: change log level of repeated messages from INFO to DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
fpalsson committed Dec 20, 2020
1 parent a06dcc3 commit cd978ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gst/gstbus.c
Expand Up @@ -610,10 +610,10 @@ gst_bus_timed_pop_filtered (GstBus * bus, GstClockTime timeout,
g_mutex_lock (&bus->priv->queue_lock);

if (ret == 0) {
GST_INFO_OBJECT (bus, "timed out, breaking loop");
GST_DEBUG_OBJECT (bus, "timed out, breaking loop");
break;
} else {
GST_INFO_OBJECT (bus, "we got woken up, recheck for message");
GST_DEBUG_OBJECT (bus, "we got woken up, recheck for message");
}
}

Expand Down

0 comments on commit cd978ff

Please sign in to comment.