summaryrefslogtreecommitdiff
path: root/timer.c
diff options
context:
space:
mode:
authorhorchi <vdr@jwendel.de>2018-03-10 08:19:13 +0100
committerhorchi <vdr@jwendel.de>2018-03-10 08:19:13 +0100
commita29fa81a3dbf641a40b93f69b90151f70dc0290c (patch)
tree86e71b25bb437298b199c2ec127b3c6dcb599a64 /timer.c
parentbc845e984ba0790bb160c80578ed8ddde2637735 (diff)
downloadvdr-plugin-epg2vdr-a29fa81a3dbf641a40b93f69b90151f70dc0290c.tar.gz
vdr-plugin-epg2vdr-a29fa81a3dbf641a40b93f69b90151f70dc0290c.tar.bz2
added log message
Diffstat (limited to 'timer.c')
-rw-r--r--timer.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/timer.c b/timer.c
index 154a464..21b432c 100644
--- a/timer.c
+++ b/timer.c
@@ -371,7 +371,7 @@ int cUpdate::performTimerJobs()
{
tell(0, "Took timer (%d) for uuid 'any', event (%ld)", timerid, eventid);
- // mark 'na' record as assumed and create new with my UUID in primary key
+ // mark 'any' record as assumed and create new with my UUID in primary key
timerDb->setCharValue("ACTION", taAssumed);
timerDb->setCharValue("STATE", tsIgnore);
@@ -385,8 +385,10 @@ int cUpdate::performTimerJobs()
// update timerid !!!
+ int otid = timerid;
timerid = timerDb->getLastInsertId();
timerDb->setValue("ID", timerid);
+ tell(0, "DEBUG: Copied timer (%d/%ld) to (%d/%ld)", otid, eventid, timerid, timerDb->getIntValue("EVENTID"));
}
}
else