From d31a6f8756967b12cbe16d21699d9129a32a5600 Mon Sep 17 00:00:00 2001 From: "Reynaldo H. Verdejo Pinochet" Date: Wed, 17 Aug 2016 16:21:34 -0700 Subject: [PATCH] dvb/parsechannels: warn on ignored key/value pairs Otherwise at runtine, users get the misleading parsing-OK message with no info on, for example, properties that failed to map because of a typo. --- sys/dvb/parsechannels.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dvb/parsechannels.c b/sys/dvb/parsechannels.c index 4837e2797..e39cd94f8 100644 --- a/sys/dvb/parsechannels.c +++ b/sys/dvb/parsechannels.c @@ -340,7 +340,7 @@ parse_and_configure_from_v5_conf_file (GstElement * dvbbasebin, } if (!property_found) - GST_DEBUG_OBJECT (dvbbasebin, "Failed to map property '%s'", k); + GST_WARNING_OBJECT (dvbbasebin, "Failed to map property '%s'", k); keys_p++; } -- 2.34.1