v4l2: v4l2_compat_manager: Don't print "camera not found" on openat()

Some applications (like Firefox) run open() many times on video device
nodes. This may lead to user confusion when they see "INFO V4L2Compat
v4l2_compat_manager.cpp:146 No camera found for /dev/videoX" over and
over again.

Lower the log level to debug so that we can still get this information
on debug, and so users won't see it all the time.

Signed-off-by: Paul Elder <paul.elder@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
Paul Elder 2021-08-27 15:25:20 +09:00
parent e355ca0087
commit a20d52a35b

View file

@ -143,7 +143,7 @@ int V4L2CompatManager::openat(int dirfd, const char *path, int oflag, mode_t mod
ret = getCameraIndex(fd);
if (ret < 0) {
LOG(V4L2Compat, Info) << "No camera found for " << path;
LOG(V4L2Compat, Debug) << "No camera found for " << path;
return fd;
}