From 257f97555846c96dbaae5313ad351f3dcf4c32c1 Mon Sep 17 00:00:00 2001 From: stan Date: Wed, 3 Nov 2010 10:03:58 +0000 Subject: [PATCH] Commented out some unnecessary debug git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@3156 e3e1d417-86f3-4887-817a-d78f3d33393f --- src/zm_local_camera.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/zm_local_camera.cpp b/src/zm_local_camera.cpp index a935b9bf5..794c5ba51 100644 --- a/src/zm_local_camera.cpp +++ b/src/zm_local_camera.cpp @@ -1228,13 +1228,13 @@ int LocalCamera::Brightness( int p_brightness ) Error( "Unable to query brightness: %s", strerror(errno) ) else Warning( "Brightness control is not suppported" ) - Info( "Brightness 1 %d", vid_control.value ); + //Info( "Brightness 1 %d", vid_control.value ); } else if ( p_brightness >= 0 ) { vid_control.value = p_brightness; - Info( "Brightness 2 %d", vid_control.value ); + //Info( "Brightness 2 %d", vid_control.value ); /* The driver may clamp the value or return ERANGE, ignored here */ if ( vidioctl ( vid_fd, VIDIOC_S_CTRL, &vid_control ) ) { @@ -1243,7 +1243,7 @@ int LocalCamera::Brightness( int p_brightness ) else Warning( "Given brightness value (%d) may be out-of-range", p_brightness ) } - Info( "Brightness 3 %d", vid_control.value ); + //Info( "Brightness 3 %d", vid_control.value ); } return( vid_control.value ); }