epggrab: reduce spam in the logs, fixes #1839.
This commit is contained in:
parent
a8ce127dee
commit
8438dfd7a6
2 changed files with 8 additions and 6 deletions
|
@ -595,10 +595,12 @@ _eit_callback
|
||||||
} else {
|
} else {
|
||||||
if (mm->mm_tsid != tsid ||
|
if (mm->mm_tsid != tsid ||
|
||||||
mm->mm_onid != onid) {
|
mm->mm_onid != onid) {
|
||||||
tvhwarn("eit",
|
if (mm->mm_onid != MPEGTS_ONID_NONE &&
|
||||||
"invalid tsid found tid 0x%02X, onid:tsid %d:%d != %d:%d",
|
mm->mm_tsid != MPEGTS_TSID_NONE)
|
||||||
tableid, mm->mm_onid, mm->mm_tsid, onid, tsid);
|
tvhwarn("eit",
|
||||||
//dm = NULL;
|
"invalid tsid found tid 0x%02X, onid:tsid %d:%d != %d:%d",
|
||||||
|
tableid, mm->mm_onid, mm->mm_tsid, onid, tsid);
|
||||||
|
mm = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(!mm)
|
if(!mm)
|
||||||
|
|
|
@ -136,7 +136,7 @@ epggrab_ota_start ( epggrab_ota_mux_t *om )
|
||||||
epggrab_ota_active_timer_cb(NULL);
|
epggrab_ota_active_timer_cb(NULL);
|
||||||
LIST_FOREACH(map, &om->om_modules, om_link) {
|
LIST_FOREACH(map, &om->om_modules, om_link) {
|
||||||
map->om_complete = 0;
|
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;
|
int done = 1;
|
||||||
epggrab_ota_map_t *map;
|
epggrab_ota_map_t *map;
|
||||||
tvhinfo(mod->id, "grab complete");
|
tvhdebug(mod->id, "grab complete");
|
||||||
|
|
||||||
/* Test for completion */
|
/* Test for completion */
|
||||||
LIST_FOREACH(map, &ota->om_modules, om_link) {
|
LIST_FOREACH(map, &ota->om_modules, om_link) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue