From 70eafd259abf5a8f75ddfd52cd5fe2fab9656acc Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Fri, 19 Oct 2001 13:38:15 +0200 Subject: [PATCH] Removed the 'system time seen...' message --- HISTORY | 2 +- vdr.c | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/HISTORY b/HISTORY index f11f2ebb..343b420a 100644 --- a/HISTORY +++ b/HISTORY @@ -794,7 +794,6 @@ Video Disk Recorder Revision History - The new setup parameter SplitEditedFiles can be used to control whether or not the result of an editing process shall be written into separate files. - Fixed handling repeat function when using LIRC (thanks to Matthias Weingart). -- Fixed the "system time seen..." message in case of overlapping timers. - The shutdown program (defined with the '-s' option) now also gets the channel number and recording title of the timer (see INSTALL). - New channel data for 'Premiere One', 'Premiere X-Action', 'Fox Kids Türkce' @@ -819,3 +818,4 @@ Video Disk Recorder Revision History - Mapping ` ("backtick") characters in EPG texts to ' (single quote). - Fixed timers starting and ending at unexpected times. 'localtime()' was not thread safe, now using localtime_r(). +- Removed the "system time seen..." message. diff --git a/vdr.c b/vdr.c index 4777f87f..efba4666 100644 --- a/vdr.c +++ b/vdr.c @@ -22,7 +22,7 @@ * * The project's page is at http://www.cadsoft.de/people/kls/vdr * - * $Id: vdr.c 1.83 2001/10/07 15:13:48 kls Exp $ + * $Id: vdr.c 1.84 2001/10/19 13:37:24 kls Exp $ */ #include @@ -359,8 +359,6 @@ int main(int argc, char *argv[]) cRecordControls::Process(Now); cTimer *Timer = Timers.GetMatch(Now); if (Timer) { - if (!Timer->pending) - dsyslog(LOG_INFO, "system time seen is %s", ctime(&Now)); if (!cRecordControls::Start(Timer)) Timer->SetPending(true); }