From patchwork Sat Aug 29 09:47:47 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Robert Mader X-Patchwork-Id: 28146 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 26875C333E for ; Sat, 29 Aug 2026 09:48:36 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 142A5684AF; Sat, 29 Aug 2026 11:48:35 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=collabora.com header.i=robert.mader@collabora.com header.b="fLFVE6mA"; dkim-atps=neutral Received: from sender4-op-o11.zoho.com (sender4-op-o11.zoho.com [136.143.188.11]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 1C7E468450 for ; Sat, 29 Aug 2026 11:48:32 +0200 (CEST) ARC-Seal: i=1; a=rsa-sha256; t=1787996879; cv=none; d=zohomail.com; s=zohoarc; b=k8EApatEaJcmdb+Fp0ZKnSjj7WOlMZSSdPpz2voxZxULBSG2EwMWw1mB2dx905qln8No7kgMD2gKL07HJasCxXnq8OWRSatbOCGEaKKJ+fGLLyWF8Qq50PlsImqZWTdxToUCSx+aaTUiCudzddtqbqBU4hYszrwnY6qSc+6bV8o= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1787996879; h=Content-Transfer-Encoding:Cc:Cc:Date:Date:From:From:MIME-Version:Message-ID:Subject:Subject:To:To:Message-Id:Reply-To; bh=jAt8BXhLCV3e3yDzpIm+GlQkLpUR8G/muqHCz/nHJ4Q=; b=fWXzfTTgN5SSrNljDOkF4EXedq34G8d0m9VpJ7ZRXAhZ2XEExKIy/XBqNE0XF3l9ZLrpnnJmolXKvLf2eRZl+szntQ/CvvnHbVTHDUFzyET6yOCIgDYz2XoCZN7E0oluZYYUHJSsWN95rvsfUQHzF1/eK/+7LtM1VKBnIrPATCo= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass header.i=collabora.com; spf=pass smtp.mailfrom=robert.mader@collabora.com; dmarc=pass header.from= DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1787996879; s=zohomail; d=collabora.com; i=robert.mader@collabora.com; h=From:From:To:To:Cc:Cc:Subject:Subject:Date:Date:Message-ID:MIME-Version:Content-Transfer-Encoding:Message-Id:Reply-To; bh=jAt8BXhLCV3e3yDzpIm+GlQkLpUR8G/muqHCz/nHJ4Q=; b=fLFVE6mApVP9vtHHZY/S6QzbxCss+/FTsMSEs1nKG5RCxnr3NqZjxSuupMWKjqcQ JE5XRRvjyn07yiWvD5rOo+Q69/sSOGodwdutP6YXRoU0NXoEtQSeo2XnhEn5Bppe7kk Z5GJMmxuSKoCvTuRPSsXjpEDnKP8qL5WW058D5zk= Received: by mx.zohomail.com with SMTPS id 1787996876084493.6668948862481; Sat, 29 Aug 2026 02:47:56 -0700 (PDT) From: Robert Mader To: libcamera-devel@lists.libcamera.org Cc: Robert Mader Subject: [PATCH] debayer: Further demote 'Unsupported input format' log Date: Sat, 29 Aug 2026 11:47:47 +0200 Message-ID: <20260829094747.192641-1-robert.mader@collabora.com> X-Mailer: git-send-email 2.55.0 MIME-Version: 1.0 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: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" On some platforms such as the PinePhone these logs clutter the output of tools and the journal a lot. Let's silence them for normal usage. Signed-off-by: Robert Mader --- src/libcamera/software_isp/debayer_cpu.cpp | 4 ++-- src/libcamera/software_isp/debayer_egl.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libcamera/software_isp/debayer_cpu.cpp b/src/libcamera/software_isp/debayer_cpu.cpp index c6d5d1e1813b..6787473163b0 100644 --- a/src/libcamera/software_isp/debayer_cpu.cpp +++ b/src/libcamera/software_isp/debayer_cpu.cpp @@ -470,8 +470,8 @@ int DebayerCpu::getInputConfig(PixelFormat inputFormat, DebayerInputConfig &conf return 0; } - LOG(Debayer, Info) - << "Unsupported input format " << inputFormat.toString(); + LOG(Debayer, Debug) + << "Unsupported input format " << inputFormat; return -EINVAL; } diff --git a/src/libcamera/software_isp/debayer_egl.cpp b/src/libcamera/software_isp/debayer_egl.cpp index 97aa03793574..d02a3c53ec7b 100644 --- a/src/libcamera/software_isp/debayer_egl.cpp +++ b/src/libcamera/software_isp/debayer_egl.cpp @@ -91,7 +91,7 @@ int DebayerEGL::getInputConfig(PixelFormat inputFormat, DebayerInputConfig &conf return 0; } - LOG(Debayer, Info) + LOG(Debayer, Debug) << "Unsupported input format " << inputFormat; return -EINVAL;