diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2012-02-28 21:59:51 +0100 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2012-02-28 21:59:51 +0100 |
commit | 9aea13ab42937e62243f833c960e452966b9f115 (patch) | |
tree | 31bcd853835389ac7bd87442f94f500dd1c65a63 /eepg.c | |
parent | d367ef95a8ff4a42dec4aff085e9bad5546a3c1f (diff) | |
download | vdr-plugin-eepg-9aea13ab42937e62243f833c960e452966b9f115.tar.gz vdr-plugin-eepg-9aea13ab42937e62243f833c960e452966b9f115.tar.bz2 |
logging
Diffstat (limited to 'eepg.c')
-rw-r--r-- | eepg.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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) { |