diff options
author | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2009-10-18 12:59:13 +0200 |
---|---|---|
committer | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2009-10-18 12:59:13 +0200 |
commit | 06ca46d943e3d7bbf315fcfb8c4653523fae66de (patch) | |
tree | bff27776750a2a41f152c5edbc0cfb427af1a33a /searchtimer_thread.c | |
parent | c3bad13778798f9e85cb5ede49a877bdc673e4ba (diff) | |
download | vdr-plugin-epgsearch-06ca46d943e3d7bbf315fcfb8c4653523fae66de.tar.gz vdr-plugin-epgsearch-06ca46d943e3d7bbf315fcfb8c4653523fae66de.tar.bz2 |
more logging when timers file has changed
Diffstat (limited to 'searchtimer_thread.c')
-rw-r--r-- | searchtimer_thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searchtimer_thread.c b/searchtimer_thread.c index a232553..db5e9f5 100644 --- a/searchtimer_thread.c +++ b/searchtimer_thread.c @@ -378,7 +378,7 @@ void cSearchTimerThread::Action(void) if (timerMod & tmStartStop) LogFile.Log(3,"timer for '%s~%s' (%s - %s, channel %d) : start/stop has changed", pEvent->Title()?pEvent->Title():"no title", pEvent->ShortText()?pEvent->ShortText():"no subtitle", GETDATESTRING(pEvent), GETTIMESTRING(pEvent), ChannelNrFromEvent(pEvent)); if (timerMod & tmFile) - LogFile.Log(3,"timer for '%s~%s' (%s - %s, channel %d) : title and/or episdode has changed", pEvent->Title()?pEvent->Title():"no title", pEvent->ShortText()?pEvent->ShortText():"no subtitle", GETDATESTRING(pEvent), GETTIMESTRING(pEvent), ChannelNrFromEvent(pEvent)); + LogFile.Log(3,"timer for '%s~%s' (%s - %s, channel %d) : title and/or episdode has changed (old: %s, new: %s", pEvent->Title()?pEvent->Title():"no title", pEvent->ShortText()?pEvent->ShortText():"no subtitle", GETDATESTRING(pEvent), GETTIMESTRING(pEvent), ChannelNrFromEvent(pEvent), timer?timer->File():"", pFile); if (timerMod & tmAuxEventID) LogFile.Log(3,"timer for '%s~%s' (%s - %s, channel %d) : aux info for event id has changed", pEvent->Title()?pEvent->Title():"no title", pEvent->ShortText()?pEvent->ShortText():"no subtitle", GETDATESTRING(pEvent), GETTIMESTRING(pEvent), ChannelNrFromEvent(pEvent)); } |