gtk4: Promote set_caps debug log to info

As that info is very helpful for debugging and can get easily get
lost in debug noise.

This matches the behavior of glupload and gtkgstsink.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/2341>
This commit is contained in:
Robert Mader 2025-07-02 14:34:07 +02:00
parent 096987a31c
commit b271edc3f8

View file

@ -494,7 +494,7 @@ impl BaseSinkImpl for PaintableSink {
}
fn set_caps(&self, caps: &gst::Caps) -> Result<(), gst::LoggableError> {
gst::debug!(CAT, imp = self, "Setting caps {caps:?}");
gst::info!(CAT, imp = self, "Setting caps {caps:?}");
#[allow(unused_mut)]
let mut video_info = None;