From 27533302b87196b18d470e8c96d96dd69bc5db13 Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Thu, 14 Nov 2024 15:15:43 -0500 Subject: [PATCH] glupload: Upgrade uploader selection message to INFO This allow using INFO log to quickly see what uploader we picked. This is very useful as the DEBUG category has became very noisy. Part-of: --- subprojects/gst-plugins-base/gst-libs/gst/gl/gstglupload.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-plugins-base/gst-libs/gst/gl/gstglupload.c b/subprojects/gst-plugins-base/gst-libs/gst/gl/gstglupload.c index f1ee707309..3f4ee0cce1 100644 --- a/subprojects/gst-plugins-base/gst-libs/gst/gl/gstglupload.c +++ b/subprojects/gst-plugins-base/gst-libs/gst/gl/gstglupload.c @@ -3515,7 +3515,7 @@ _upload_find_method (GstGLUpload * upload, gpointer last_impl) upload->priv->method = upload_methods[method_i]; upload->priv->method_impl = upload->priv->upload_impl[method_i]; - GST_DEBUG_OBJECT (upload, "attempting upload with uploader %s", + GST_INFO_OBJECT (upload, "attempting upload with uploader %s", upload->priv->method->name); upload->priv->method_i++;