diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2017-12-14 15:18:05 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2017-12-14 15:18:05 +0100 |
commit | 05bfa4b476cb13f54f2812a55dbafc82fdd4ae61 (patch) | |
tree | 86a1eaa340aa9d043c2a6fd9514bfe38ea52684e /recording.c | |
parent | 630cc496ea18d1f4958e650a60af3bcae61cbfb3 (diff) | |
download | vdr-05bfa4b476cb13f54f2812a55dbafc82fdd4ae61.tar.gz vdr-05bfa4b476cb13f54f2812a55dbafc82fdd4ae61.tar.bz2 |
Changed the log message ""ERROR: copying directory %s to %s ended prematurely" from "error" to "info"
Diffstat (limited to 'recording.c')
-rw-r--r-- | recording.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recording.c b/recording.c index 4dbb81c6..51013e33 100644 --- a/recording.c +++ b/recording.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: recording.c 4.14 2017/12/11 13:35:14 kls Exp $ + * $Id: recording.c 4.15 2017/12/14 15:14:59 kls Exp $ */ #include "recording.h" @@ -1823,7 +1823,7 @@ void cDirCopier::Action(void) free(Buffer); close(From); // just to be absolutely sure close(To); - esyslog("ERROR: copying directory '%s' to '%s' ended prematurely", *dirNameSrc, *dirNameDst); + isyslog("copying directory '%s' to '%s' ended prematurely", *dirNameSrc, *dirNameDst); } else esyslog("ERROR: can't open '%s'", *dirNameSrc); |