diff options
author | Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com> | 2016-08-17 16:21:34 -0700 |
---|---|---|
committer | Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com> | 2016-08-18 11:27:57 -0700 |
commit | d31a6f8756967b12cbe16d21699d9129a32a5600 (patch) | |
tree | 1e7503e845ec13fe7705f716ff3ce3b8c775356d | |
parent | c40e49c9b1b4da6822aba37f2c137ff4f8d4605e (diff) |
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.
-rw-r--r-- | sys/dvb/parsechannels.c | 2 |
1 files changed, 1 insertions, 1 deletions
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++; } |