summaryrefslogtreecommitdiff
path: root/eepg.c
diff options
context:
space:
mode:
Diffstat (limited to 'eepg.c')
-rw-r--r--eepg.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/eepg.c b/eepg.c
index 96efeda..810923a 100644
--- a/eepg.c
+++ b/eepg.c
@@ -2921,13 +2921,14 @@ void cEIT2::updateEquivalent(cSchedules * Schedules, tChannelID channelID, cEven
multimap<const char*,const char*>::iterator it;
pair<multimap<const char*,const char*>::iterator,multimap<const char*,const char*>::iterator> ret;
- LogD(3, prep("Start updateEquivalent"), equiChanMap.size());
+ LogD(3, prep("Start updateEquivalent %s"), *channelID.ToString());
ret = equiChanMap.equal_range(*channelID.ToString());
for (it=ret.first; it!=ret.second; ++it) {
tChannelID equChannelID (tChannelID::FromString((*it).second));
cChannel *equChannel = GetChannelByID (equChannelID, false);
if (equChannel) {
+ LogD(3, prep("found Equivalent channel %s"), *equChannelID.ToString());
cSchedule *pSchedule = (cSchedule *) Schedules->GetSchedule (equChannel, true);
cEvent *pEqvEvent = (cEvent *) pSchedule->GetEvent (pEvent->EventID(), pEvent->StartTime());
if (pEqvEvent) {