mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Dropped logging writing epg.data (comes too often)
This commit is contained in:
parent
1a4526a3df
commit
778a6b47ca
1
HISTORY
1
HISTORY
@ -4251,7 +4251,6 @@ Video Disk Recorder Revision History
|
|||||||
- Removed the "buffer reserve" in Transfer Mode - it's no longer necessary with
|
- Removed the "buffer reserve" in Transfer Mode - it's no longer necessary with
|
||||||
recent driver/firmware versions.
|
recent driver/firmware versions.
|
||||||
- The epg.data file is now written when VDR exits (suggested by Daniel Karsubka).
|
- The epg.data file is now written when VDR exits (suggested by Daniel Karsubka).
|
||||||
- There is now a log message when VDR writes the epg.data file.
|
|
||||||
- Fixed cTimers::GetNextActiveTimer() so that it won't return an expired timer
|
- Fixed cTimers::GetNextActiveTimer() so that it won't return an expired timer
|
||||||
(reported by Rolf Ahrenberg).
|
(reported by Rolf Ahrenberg).
|
||||||
- Changed DVBS_TUNE_TIMEOUT and DVBC_TUNE_TIMEOUT to 9000ms to avoid problems with
|
- Changed DVBS_TUNE_TIMEOUT and DVBC_TUNE_TIMEOUT to 9000ms to avoid problems with
|
||||||
|
3
epg.c
3
epg.c
@ -7,7 +7,7 @@
|
|||||||
* Original version (as used in VDR before 1.3.0) written by
|
* Original version (as used in VDR before 1.3.0) written by
|
||||||
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
|
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
|
||||||
*
|
*
|
||||||
* $Id: epg.c 1.54 2006/01/29 11:27:43 kls Exp $
|
* $Id: epg.c 1.55 2006/01/29 13:00:26 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "epg.h"
|
#include "epg.h"
|
||||||
@ -911,7 +911,6 @@ void cSchedules::Cleanup(bool Force)
|
|||||||
ReportEpgBugFixStats(true);
|
ReportEpgBugFixStats(true);
|
||||||
}
|
}
|
||||||
if (epgDataFileName && now - lastDump > 600) {
|
if (epgDataFileName && now - lastDump > 600) {
|
||||||
isyslog("writing EPG data to %s", epgDataFileName);
|
|
||||||
cSafeFile f(epgDataFileName);
|
cSafeFile f(epgDataFileName);
|
||||||
if (f.Open()) {
|
if (f.Open()) {
|
||||||
Dump(f);
|
Dump(f);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user