diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-06-11 09:14:22 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-06-11 09:14:22 +0200 |
commit | d324b2de882be794d2107c1ab945e79f71018fec (patch) | |
tree | ed8e1a507c17c96cc8ff8666f26997e0f1c2fb64 /dvbdevice.c | |
parent | 99876fdab3362a4e09935b1a4c1ffe0a48366664 (diff) | |
download | vdr-d324b2de882be794d2107c1ab945e79f71018fec.tar.gz vdr-d324b2de882be794d2107c1ab945e79f71018fec.tar.bz2 |
Reduced logging for the SVDRP GRAB command1.4.1
Diffstat (limited to 'dvbdevice.c')
-rw-r--r-- | dvbdevice.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dvbdevice.c b/dvbdevice.c index fc57c5b0..9ae8dfaf 100644 --- a/dvbdevice.c +++ b/dvbdevice.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbdevice.c 1.158 2006/05/28 15:05:03 kls Exp $ + * $Id: dvbdevice.c 1.159 2006/06/11 09:03:55 kls Exp $ */ #include "dvbdevice.h" @@ -570,7 +570,7 @@ uchar *cDvbDevice::GrabImage(int &Size, bool Jpeg, int Quality, int SizeX, int S if (Quality < 0) Quality = 100; - isyslog("grabbing to %s %d %d %d", Jpeg ? "JPEG" : "PNM", Quality, vm.width, vm.height); + dsyslog("grabbing to %s %d %d %d", Jpeg ? "JPEG" : "PNM", Quality, vm.width, vm.height); if (Jpeg) { // convert to JPEG: result = RgbToJpeg(mem, vm.width, vm.height, Size, Quality); |