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:
@@ -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: {
|
||||
|
||||
Reference in New Issue
Block a user