summaryrefslogtreecommitdiff
path: root/timers.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2003-04-27 11:15:29 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2003-04-27 11:15:29 +0200
commitfab3ade64aa88b09958d9822295ac27a04aad54c (patch)
tree7822e102278e8f5d5fac79ab37c17cb71b2abd97 /timers.c
parent42afaecfe08253d679d8acc73bb46c3dadb1b106 (diff)
downloadvdr-fab3ade64aa88b09958d9822295ac27a04aad54c.tar.gz
vdr-fab3ade64aa88b09958d9822295ac27a04aad54c.tar.bz2
Extended logging info when starting/stopping timers
Diffstat (limited to 'timers.c')
-rw-r--r--timers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/timers.c b/timers.c
index 8e2bead3..8c982e2d 100644
--- a/timers.c
+++ b/timers.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: timers.c 1.3 2002/11/24 14:29:21 kls Exp $
+ * $Id: timers.c 1.4 2003/04/27 11:11:45 kls Exp $
*/
#include "timers.h"
@@ -336,7 +336,7 @@ time_t cTimer::StopTime(void)
void cTimer::SetRecording(bool Recording)
{
recording = Recording;
- isyslog("timer %d %s", Index() + 1, recording ? "start" : "stop");
+ isyslog("timer %d (%d %04d-%04d '%s') %s", Index() + 1, Channel()->Number(), start, stop, file, recording ? "start" : "stop");
}
void cTimer::SetPending(bool Pending)