summaryrefslogtreecommitdiff
path: root/subprojects
diff options
context:
space:
mode:
authorMaxim P. DEMENTYEV <mdementyev@fluendo.com>2023-05-07 01:06:26 +0200
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2023-05-08 14:39:24 +0000
commitf9c24cd7e70c8b8e50a6b8df87623a009c37c7ec (patch)
tree9536018284d8d5c72203b4789be0ccfbe2a5fbe1 /subprojects
parent8ca6547f49a8260c96381c8d12d1d170a0bf918d (diff)
downloadgstreamer-f9c24cd7e70c8b8e50a6b8df87623a009c37c7ec.tar.gz
plugin ext dep INFO: Adding var name and value part number
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4570>
Diffstat (limited to 'subprojects')
-rw-r--r--subprojects/gstreamer/gst/gstplugin.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/subprojects/gstreamer/gst/gstplugin.c b/subprojects/gstreamer/gst/gstplugin.c
index 7bcb82e925..75f9479bf9 100644
--- a/subprojects/gstreamer/gst/gstplugin.c
+++ b/subprojects/gstreamer/gst/gstplugin.c
@@ -1619,8 +1619,9 @@ gst_plugin_ext_dep_extract_env_vars_paths (GstPlugin * plugin,
gchar *full_path;
if (!g_path_is_absolute (arr[i])) {
- GST_INFO_OBJECT (plugin, "ignoring environment variable content '%s'"
- ": either not an absolute path or not a path at all", arr[i]);
+ GST_INFO_OBJECT (plugin, "ignoring environment variable '%s' with "
+ "content #%u '%s': either not an absolute path or not a path at all",
+ components[0], i, arr[i]);
continue;
}