epggrab: reduce spam in the logs, fixes #1839.

This commit is contained in:
Adam Sutton 2013-12-23 23:01:52 +00:00
parent a8ce127dee
commit 8438dfd7a6
2 changed files with 8 additions and 6 deletions

View file

@ -595,10 +595,12 @@ _eit_callback
} else {
if (mm->mm_tsid != tsid ||
mm->mm_onid != onid) {
if (mm->mm_onid != MPEGTS_ONID_NONE &&
mm->mm_tsid != MPEGTS_TSID_NONE)
tvhwarn("eit",
"invalid tsid found tid 0x%02X, onid:tsid %d:%d != %d:%d",
tableid, mm->mm_onid, mm->mm_tsid, onid, tsid);
//dm = NULL;
mm = NULL;
}
}
if(!mm)

View file

@ -136,7 +136,7 @@ epggrab_ota_start ( epggrab_ota_mux_t *om )
epggrab_ota_active_timer_cb(NULL);
LIST_FOREACH(map, &om->om_modules, om_link) {
map->om_complete = 0;
tvhinfo(map->om_module->id, "grab started");
tvhdebug(map->om_module->id, "grab started");
}
}
@ -242,7 +242,7 @@ epggrab_ota_complete
{
int done = 1;
epggrab_ota_map_t *map;
tvhinfo(mod->id, "grab complete");
tvhdebug(mod->id, "grab complete");
/* Test for completion */
LIST_FOREACH(map, &ota->om_modules, om_link) {