From patchwork Mon Mar 23 14:21:55 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 3254 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 2229462C71 for ; Mon, 23 Mar 2020 15:22:22 +0100 (CET) Received: from pendragon.bb.dnainternet.fi (81-175-216-236.bb.dnainternet.fi [81.175.216.236]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id B3549A31 for ; Mon, 23 Mar 2020 15:22:21 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1584973341; bh=qMp1dtH5+XIq/Ph1b6k5dHbDwOxCO31oqqAeiJO36xY=; h=From:To:Subject:Date:In-Reply-To:References:From; b=aL6e2riLZxaw9uzn9qw433zfI4ScvocdRyRgTxDnk3eSyBQhxFwdFbTYPcMol1V// AfgveyA1AWqpS7isIIinCpNJJsH8/1005VKiasslECYPQWF619f5to/qqVu3YA8Zuy PoVjaRxanFRY5tcaEj/gRFMtMGVWiHt0gdzzdC8A= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Mon, 23 Mar 2020 16:21:55 +0200 Message-Id: <20200323142205.28342-12-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20200323142205.28342-1-laurent.pinchart@ideasonboard.com> References: <20200323142205.28342-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 11/21] qcam: main_window: Remove unneeded debug message X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Mar 2020 14:22:25 -0000 Printing the name of the selected camera to the log doesn't provide any value. Remove it. Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham --- src/qcam/main_window.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/qcam/main_window.cpp b/src/qcam/main_window.cpp index 21a8fcfe711d..ed8301502fb2 100644 --- a/src/qcam/main_window.cpp +++ b/src/qcam/main_window.cpp @@ -247,8 +247,6 @@ int MainWindow::openCamera() return -EBUSY; } - std::cout << "Using camera " << camera_->name() << std::endl; - return 0; }