summaryrefslogtreecommitdiff
path: root/epg.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-01-28 14:45:24 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2006-01-28 14:45:24 +0100
commitb395bd614acc6045832a5050c3bd3cc8a37c89c0 (patch)
treeab58970cda51e511e14dc5f15fca3e2950a96cf2 /epg.c
parent836390166570fed7a8741e72050f1c2a65b28db3 (diff)
downloadvdr-b395bd614acc6045832a5050c3bd3cc8a37c89c0.tar.gz
vdr-b395bd614acc6045832a5050c3bd3cc8a37c89c0.tar.bz2
There is now a log message when VDR writes the epg.data file
Diffstat (limited to 'epg.c')
-rw-r--r--epg.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epg.c b/epg.c
index 6cdfb77d..40cd3539 100644
--- a/epg.c
+++ b/epg.c
@@ -7,7 +7,7 @@
* Original version (as used in VDR before 1.3.0) written by
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
*
- * $Id: epg.c 1.52 2006/01/27 13:42:10 kls Exp $
+ * $Id: epg.c 1.53 2006/01/28 14:45:24 kls Exp $
*/
#include "epg.h"
@@ -910,6 +910,7 @@ void cSchedules::Cleanup(bool Force)
ReportEpgBugFixStats(true);
}
if (epgDataFileName && now - lastDump > 600) {
+ isyslog("writing EPG data to %s", epgDataFileName);
cSafeFile f(epgDataFileName);
if (f.Open()) {
Dump(f);