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:
parent
1e4c4ad5f7
commit
c70323e494
1 changed files with 3 additions and 3 deletions
|
@ -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: {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue