From 61b7b1856ef5f8dc37ad9198d300a75452bc4152 Mon Sep 17 00:00:00 2001 From: "Reynaldo H. Verdejo Pinochet" Date: Thu, 22 Dec 2016 13:42:59 -0800 Subject: dvb: parsechannels: replace missleadign error message Possible failure cases also include not finding the requested channel. --- sys/dvb/parsechannels.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sys') diff --git a/sys/dvb/parsechannels.c b/sys/dvb/parsechannels.c index 3a365c1ee..e1620d84c 100644 --- a/sys/dvb/parsechannels.c +++ b/sys/dvb/parsechannels.c @@ -901,8 +901,8 @@ set_properties_for_channel (GstElement * dvbbasebin, case CHANNEL_CONF_FORMAT_DVBV5: if (!parse_and_configure_from_v5_conf_file (dvbbasebin, filename, channel_name, error)) { - GST_WARNING_OBJECT (dvbbasebin, "Could not parse libdvbv5 channel " - "configuration file '%s'", filename); + GST_WARNING_OBJECT (dvbbasebin, "Problem finding information for " + "channel '%s' in configuration file '%s'", channel_name, filename); } else { GST_INFO_OBJECT (dvbbasebin, "Parsed libdvbv5 channel configuration " "file"); @@ -912,8 +912,8 @@ set_properties_for_channel (GstElement * dvbbasebin, case CHANNEL_CONF_FORMAT_ZAP: if (!parse_and_configure_from_zap_conf_file (dvbbasebin, filename, channel_name, error)) { - GST_WARNING_OBJECT (dvbbasebin, "Could not parse ZAP channel " - "configuration file '%s'", filename); + GST_WARNING_OBJECT (dvbbasebin, "Problem finding information for " + "channel '%s' in configuration file '%s'", channel_name, filename); } else { GST_INFO_OBJECT (dvbbasebin, "Parsed ZAP channel configuration file"); ret = TRUE; -- cgit v1.2.1