From e8ae244b2b656b32eeac257ed4c2e87e43435c44 Mon Sep 17 00:00:00 2001 From: Robert Mader Date: Wed, 13 Aug 2025 13:20:31 +0200 Subject: [PATCH] gst: src: Promote 'set format' log to info Follow various other elements like glupload and gtk4paintablesink and print the negotiated caps at a higher priority than debug. A small quality of life improvement to facilitate debugging. --- src/gst/gstpipewiresrc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gst/gstpipewiresrc.c b/src/gst/gstpipewiresrc.c index e6f7ff9d0..e5c0bc7ee 100644 --- a/src/gst/gstpipewiresrc.c +++ b/src/gst/gstpipewiresrc.c @@ -1206,7 +1206,7 @@ gst_pipewire_src_negotiate (GstBaseSrc * basesrc) gst_pipewire_clock_reset (GST_PIPEWIRE_CLOCK (pwsrc->stream->clock), 0); - GST_DEBUG_OBJECT (pwsrc, "set format %" GST_PTR_FORMAT, negotiated_caps); + GST_INFO_OBJECT (pwsrc, "set format %" GST_PTR_FORMAT, negotiated_caps); result = gst_base_src_set_caps (GST_BASE_SRC (pwsrc), negotiated_caps); if (!result) goto no_caps;