[libcamera-devel,v2,11/21] qcam: main_window: Remove unneeded debug message

Message ID 20200323173559.21109-12-laurent.pinchart@ideasonboard.com
State Accepted
Headers show
Series
  • qcam: Bypass format conversion when not required
Related show

Commit Message

Laurent Pinchart March 23, 2020, 5:35 p.m. UTC
Printing the name of the selected camera to the log doesn't provide any
value. Remove it.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
---
 src/qcam/main_window.cpp | 2 --
 1 file changed, 2 deletions(-)

Patch

diff --git a/src/qcam/main_window.cpp b/src/qcam/main_window.cpp
index 20e84171e4a5..c0d42c64749c 100644
--- a/src/qcam/main_window.cpp
+++ b/src/qcam/main_window.cpp
@@ -249,8 +249,6 @@  int MainWindow::openCamera()
 		return -EBUSY;
 	}
 
-	std::cout << "Using camera " << camera_->name() << std::endl;
-
 	return 0;
 }