From patchwork Wed Oct 19 11:04:34 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 17637 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 1A033C327C for ; Wed, 19 Oct 2022 11:05:06 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id A1FC962E54; Wed, 19 Oct 2022 13:05:05 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1666177505; bh=w/uO32TPgyrtOMKEmrhtHB3yy+UoiiaVEGSrKbYpN9c=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=OjPbb6kp8oJl7cxXdnQPzZqyAmDbXpKH4oQXyTOuQ2ClVrLoV5uAeaiQA/JLAM3ZA OXN1nEBVXecBOPKN195izHgpgOpH07bhvicEhD7gvxQzMdJNh0vAww145P9lC7/O1V JSR2IzNxPWQwDXLY4+LrFF5lnkU7I9S0Ab3mSwUcppDiVMnBCR0YCL4rCDNdJZNpJZ OaZ2vM6S/9qwQc47J5MGl75SFeMd3GPEESokRP+wvPDjF6iFpAmCJa45t+JsO05Wi7 rIw46nMqgRBkis1l5E9aG3kJ/X6JDu2bJV0WuQCSD30IenzqUkvyL3Z/nsDsZbuQ0H tdj6mwj3yNVow== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 99F1862E4F for ; Wed, 19 Oct 2022 13:05:03 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="ebBJMrT+"; dkim-atps=neutral Received: from pendragon.ideasonboard.com (62-78-145-57.bb.dnainternet.fi [62.78.145.57]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 051EE5A4 for ; Wed, 19 Oct 2022 13:05:02 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1666177503; bh=w/uO32TPgyrtOMKEmrhtHB3yy+UoiiaVEGSrKbYpN9c=; h=From:To:Subject:Date:In-Reply-To:References:From; b=ebBJMrT+WLyct+igdHBDusSl/ENFcHqhXLj2DTAtGlzM2h4QR1kY1Wn4t+mlTWIpb FPjVyXQiXyBwJL4UbMrMI7hy/VTD67sBUv/A+lrnRCOb6nwomt2L6+P/N/2T0DIKRZ HDWCuRy7SPkfYSu4PPOZhD4OnMvX+6LdTEdybnyI= To: libcamera-devel@lists.libcamera.org Date: Wed, 19 Oct 2022 14:04:34 +0300 Message-Id: <20221019110434.17767-5-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.37.3 In-Reply-To: <20221019110434.17767-1-laurent.pinchart@ideasonboard.com> References: <20221019110434.17767-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v1 4/4] ipa: rkisp1: Downgrade sensor controls range 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" There's no need to print the exposure and gain control ranges as an Info message. Downgrade it to Debug. While at it, print the ranges using the "[min, max]" syntax. Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham Reviewed-by: Jacopo Mondi --- src/ipa/rkisp1/rkisp1.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ipa/rkisp1/rkisp1.cpp b/src/ipa/rkisp1/rkisp1.cpp index bef5211d5c34..7dd340cf50af 100644 --- a/src/ipa/rkisp1/rkisp1.cpp +++ b/src/ipa/rkisp1/rkisp1.cpp @@ -232,9 +232,9 @@ int IPARkISP1::configure([[maybe_unused]] const IPACameraSensorInfo &info, int32_t minGain = itGain->second.min().get(); int32_t maxGain = itGain->second.max().get(); - LOG(IPARkISP1, Info) - << "Exposure: " << minExposure << "-" << maxExposure - << " Gain: " << minGain << "-" << maxGain; + LOG(IPARkISP1, Debug) + << "Exposure: [" << minExposure << ", " << maxExposure + << "], gain: [" << minGain << ", " << maxGain << "]"; /* Clear the IPA context before the streaming session. */ context_.configuration = {};