libcamera: pipeline_handler: Remove duplicated log from uvc and vimc

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 <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
This commit is contained in:
Laurent Pinchart 2019-04-29 19:23:10 +03:00
parent 7022136aaa
commit baad55d009
2 changed files with 0 additions and 6 deletions

View file

@ -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;

View file

@ -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;