From 000a7650fc91c1d14f5039a2a73830bb9e040049 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 008d3a7d56..78b9731869 100644 --- a/subprojects/gst-plugins-base/gst-libs/gst/gl/gstglupload.c +++ b/subprojects/gst-plugins-base/gst-libs/gst/gl/gstglupload.c @@ -3525,7 +3525,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++;