From: Andreas Monzner Date: Mon, 8 Sep 2008 11:09:35 +0000 (+0000) Subject: replace eFatal (which can occour during servicescan at some conditions) with X-Git-Tag: 2.6.0~893 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/75e290c3b464a082901ea3213fb6dc6e56d628c2 replace eFatal (which can occour during servicescan at some conditions) with a debug message --- diff --git a/lib/dvb/sec.cpp b/lib/dvb/sec.cpp index b1f421c0..d56024e1 100644 --- a/lib/dvb/sec.cpp +++ b/lib/dvb/sec.cpp @@ -851,10 +851,16 @@ RESULT eDVBSatelliteEquipmentControl::prepare(iDVBFrontend &frontend, FRONTENDPA return 0; } } - else - eFatal("canTune failed in sec prepare!!! this should never ever happen!"); - - eDebug("found no useable satellite configuration for orbital position (%d)", sat.orbital_position ); + eDebug("found no useable satellite configuration for %s freq %d%s %s on orbital position (%d)", + sat.system ? "DVB-S2" : "DVB-S", + sat.frequency, + sat.polarisation == eDVBFrontendParametersSatellite::Polarisation::Horizontal ? "H" : + eDVBFrontendParametersSatellite::Polarisation::Vertical ? "V" : + eDVBFrontendParametersSatellite::Polarisation::CircularLeft ? "CL" : "CR", + sat.modulation == eDVBFrontendParametersSatellite::Modulation::Auto ? "AUTO" : + eDVBFrontendParametersSatellite::Modulation::QPSK ? "QPSK" : + eDVBFrontendParametersSatellite::Modulation::M8PSK ? "8PSK" : "QAM16", + sat.orbital_position ); return -1; }