From c70323e4941542202c34f4fde7d340d1f62d6c9c Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Sat, 7 May 2022 16:29:23 +0300 Subject: ipa: raspberrypi: Demote noisy message to Debug 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(-) (limited to 'src/ipa/raspberrypi') diff --git a/src/ipa/raspberrypi/raspberrypi.cpp b/src/ipa/raspberrypi/raspberrypi.cpp index 5efd051b..05dc626a 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: { -- cgit v1.2.1