From baad55d00975f8931d51c333def20472457dc943 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Mon, 29 Apr 2019 19:23:10 +0300 Subject: libcamera: pipeline_handler: Remove duplicated log from uvc and vimc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The uvcvideo and vimc pipeline handlers print the requested resolution in their configureStreams() operation. This duplicates a generic log statement in the Camera::configureStreams() method, remove it. Signed-off-by: Laurent Pinchart Reviewed-by: Niklas Söderlund --- src/libcamera/pipeline/uvcvideo.cpp | 3 --- src/libcamera/pipeline/vimc.cpp | 3 --- 2 files changed, 6 deletions(-) (limited to 'src/libcamera') diff --git a/src/libcamera/pipeline/uvcvideo.cpp b/src/libcamera/pipeline/uvcvideo.cpp index 2f9b5e0f..fd1d6df1 100644 --- a/src/libcamera/pipeline/uvcvideo.cpp +++ b/src/libcamera/pipeline/uvcvideo.cpp @@ -109,9 +109,6 @@ int PipelineHandlerUVC::configureStreams(Camera *camera, const StreamConfiguration *cfg = &config[&data->stream_]; int ret; - LOG(UVC, Debug) << "Configure the camera for resolution " - << cfg->width << "x" << cfg->height; - V4L2DeviceFormat format = {}; format.width = cfg->width; format.height = cfg->height; diff --git a/src/libcamera/pipeline/vimc.cpp b/src/libcamera/pipeline/vimc.cpp index f70b4d3c..f9514066 100644 --- a/src/libcamera/pipeline/vimc.cpp +++ b/src/libcamera/pipeline/vimc.cpp @@ -109,9 +109,6 @@ int PipelineHandlerVimc::configureStreams(Camera *camera, const StreamConfiguration *cfg = &config[&data->stream_]; int ret; - LOG(VIMC, Debug) << "Configure the camera for resolution " - << cfg->width << "x" << cfg->height; - V4L2DeviceFormat format = {}; format.width = cfg->width; format.height = cfg->height; -- cgit v1.2.1