zapit/src/femanager.cpp: change some debug level to stop flood

This commit is contained in:
[CST] Focus
2012-04-21 16:53:15 +04:00
parent 28352bcc52
commit ba3016d9af

View File

@@ -371,7 +371,7 @@ bool CFEManager::loopCanTune(CFrontend * fe, CZapitChannel * channel)
#endif
uint8_t fe_pol = fe->getPolarization() & 1;
INFO("Check fe%d: locked %d pol:band %d:%d vs %d:%d (%d:%d)", fe->fenumber, fe->Locked(), fe_pol, fe->getHighBand(), tp_pol, tp_band, fe->getFrequency(), channel->getFreqId()*1000);
DBG("Check fe%d: locked %d pol:band %d:%d vs %d:%d (%d:%d)", fe->fenumber, fe->Locked(), fe_pol, fe->getHighBand(), tp_pol, tp_band, fe->getFrequency(), channel->getFreqId()*1000);
if(!fe->tuned || (fe_pol == tp_pol && fe->getHighBand() == tp_band))
return true;
return false;