From patchwork Sat May 7 13:30:39 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 15828 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 3DD3CC3256 for ; Sat, 7 May 2022 13:30:50 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 9E67B65644; Sat, 7 May 2022 15:30:49 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1651930249; bh=5v7gYOoNdTaWLWVnHCJHkuWWZ03/obfbK4L30VeVZe4=; h=To:Date:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=3sD1IdkMmb3MpNQ+GvXfdEG1Uu4xq+sj0kZS9h1yMmrMgYTo22yLkSSw0FScnE/39 5UYPa4wy+Zp3+s71KoQpSzvuko7mYs+bftv6d13DN8G8KXsmwbu5gYSNFz/9alTy9z 8Gy0UuypVshNulJnviL2j1OQpJMpmF4OvJr41+fLzWreZFRkRVZbMLR0F0pmUTE/oF mXN1maGhuT94Jdg8sS53XlnC5yn2IJ6fXDHA7Y7JDyOn6E9sMazT7QyTwDMqXqR7+5 6dIiLJth0qpM3l30yD/ogXPSDeSjFDOCZBK4gjA93xJmMVbAbPlyTQcqcTnOL00vKX KhZ96xRlFZ3Xg== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 10A2465643 for ; Sat, 7 May 2022 15:30:48 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="lD8PlmaM"; dkim-atps=neutral Received: from pendragon.lan (62-78-145-57.bb.dnainternet.fi [62.78.145.57]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 5832D55A; Sat, 7 May 2022 15:30:47 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1651930247; bh=5v7gYOoNdTaWLWVnHCJHkuWWZ03/obfbK4L30VeVZe4=; h=From:To:Cc:Subject:Date:From; b=lD8PlmaM1MMOpgmvxLBP3K2tM7u4gFxWFjlGWpPJ/BewwapoJrMwKKDG25zLcpqNw N+gYPX3rAMX/4FFMmV6O46YVSqNq2sbdBx9vx9gwhEKUfaE/PlkLCI51ngV/msm3KO enGeMAf4H++7c0SFUqHa45AOE2vlYwsUpoe+UJac= To: libcamera-devel@lists.libcamera.org Date: Sat, 7 May 2022 16:30:39 +0300 Message-Id: <20220507133039.30327-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] ipa: raspberrypi: Demote noisy message to Debug 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-Patchwork-Original-From: Laurent Pinchart via libcamera-devel From: Laurent Pinchart Reply-To: Laurent Pinchart Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" The message that prints all controls in a request in IPARPi::queueRequest() is noisy. Demote it from Info to Debug. Signed-off-by: Laurent Pinchart Reviewed-by: Umang Jain Reviewed-by: Naushir Patuck --- src/ipa/raspberrypi/raspberrypi.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) base-commit: 1e4c4ad5f78ad7abc73854646f6e9902dc3c1925 diff --git a/src/ipa/raspberrypi/raspberrypi.cpp b/src/ipa/raspberrypi/raspberrypi.cpp index 5efd051bdd13..05dc626aa90b 100644 --- a/src/ipa/raspberrypi/raspberrypi.cpp +++ b/src/ipa/raspberrypi/raspberrypi.cpp @@ -632,9 +632,9 @@ void IPARPi::queueRequest(const ControlList &controls) libcameraMetadata_.clear(); for (auto const &ctrl : controls) { - LOG(IPARPI, Info) << "Request ctrl: " - << controls::controls.at(ctrl.first)->name() - << " = " << ctrl.second.toString(); + LOG(IPARPI, Debug) << "Request ctrl: " + << controls::controls.at(ctrl.first)->name() + << " = " << ctrl.second.toString(); switch (ctrl.first) { case controls::AE_ENABLE: {