summaryrefslogtreecommitdiff
path: root/eepg.c
diff options
context:
space:
mode:
authorDimitar Petrovski <dimeptr@gmail.com>2012-02-28 21:59:51 +0100
committerDimitar Petrovski <dimeptr@gmail.com>2012-02-28 21:59:51 +0100
commit9aea13ab42937e62243f833c960e452966b9f115 (patch)
tree31bcd853835389ac7bd87442f94f500dd1c65a63 /eepg.c
parentd367ef95a8ff4a42dec4aff085e9bad5546a3c1f (diff)
downloadvdr-plugin-eepg-9aea13ab42937e62243f833c960e452966b9f115.tar.gz
vdr-plugin-eepg-9aea13ab42937e62243f833c960e452966b9f115.tar.bz2
logging
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) {