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 <laurent.pinchart@ideasonboard.com>
Reviewed-by: Umang Jain <umang.jain@ideasonboard.com>
Reviewed-by: Naushir Patuck <naush@raspberrypi.com>
This commit is contained in:
Laurent Pinchart 2022-05-07 16:29:23 +03:00
parent 1e4c4ad5f7
commit c70323e494

View file

@ -632,9 +632,9 @@ void IPARPi::queueRequest(const ControlList &controls)
libcameraMetadata_.clear(); libcameraMetadata_.clear();
for (auto const &ctrl : controls) { for (auto const &ctrl : controls) {
LOG(IPARPI, Info) << "Request ctrl: " LOG(IPARPI, Debug) << "Request ctrl: "
<< controls::controls.at(ctrl.first)->name() << controls::controls.at(ctrl.first)->name()
<< " = " << ctrl.second.toString(); << " = " << ctrl.second.toString();
switch (ctrl.first) { switch (ctrl.first) {
case controls::AE_ENABLE: { case controls::AE_ENABLE: {