From patchwork Mon Mar 23 17:35:49 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 3276 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 1F8B562C54 for ; Mon, 23 Mar 2020 18:36:20 +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 BBA98A31 for ; Mon, 23 Mar 2020 18:36:19 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1584984979; bh=0XGZiIToAwEhSgXz1L2qCDg0+oPVA50ixpHiATOmZtE=; h=From:To:Subject:Date:In-Reply-To:References:From; b=glu+LCGo2QoEi7Ihlhe0a5xQiPmdF9KRflmAXHDvEjP8PhAzzvRAn5Ll2CF2/Oqxb kT3tKPStaNSCYiLCyjQN0fSfukgFxDpJIGK1F9azM0KPRb67mwDVa8JTzVJZxEkUjY MvCByzh1JLb+ZgB0Df/dxP9vmEmOSLmrZhEFCGt4= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Mon, 23 Mar 2020 19:35:49 +0200 Message-Id: <20200323173559.21109-12-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20200323173559.21109-1-laurent.pinchart@ideasonboard.com> References: <20200323173559.21109-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v2 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 17:36:23 -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 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; }