summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--eepg.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/eepg.c b/eepg.c
index 3ae9c9e..96efeda 100644
--- a/eepg.c
+++ b/eepg.c
@@ -1107,6 +1107,7 @@ void loadEquivalentChannelMap (void)
} //if isempty
} //while
fclose (File);
+ LogD(3, prep("Loaded %i equivalents."), equiChanMap.size());
} //if file
}
void cFilterEEPG::LoadEquivalentChannels (void)
@@ -2920,6 +2921,8 @@ 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());
+
ret = equiChanMap.equal_range(*channelID.ToString());
for (it=ret.first; it!=ret.second; ++it) {
tChannelID equChannelID (tChannelID::FromString((*it).second));