pipeline: raspberrypi: Reduce logging verbosity

Demote a couple of lines of logging to Debug level to reduce the verbosity of
the log output during startup.

Signed-off-by: Naushir Patuck <naush@raspberrypi.com>
Reviewed-by: David Plowman <david.plowman@raspberrypi.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
Naushir Patuck
2021-12-08 14:45:30 +00:00
committed by Kieran Bingham
parent 1c88396a54
commit 5964420570
@@ -161,10 +161,10 @@ V4L2SubdeviceFormat findBestFormat(const SensorFormats &formatsMap, const Size &
bestFormat.size = size;
}
LOG(RPI, Info) << "Format: " << size.toString()
<< " fmt " << format.toString()
<< " Score: " << score
<< " (best " << bestScore << ")";
LOG(RPI, Debug) << "Format: " << size.toString()
<< " fmt " << format.toString()
<< " Score: " << score
<< " (best " << bestScore << ")";
}
}
@@ -1746,8 +1746,8 @@ void RPiCameraData::checkRequestCompleted()
state_ = State::Idle;
if (dropFrameCount_) {
dropFrameCount_--;
LOG(RPI, Info) << "Dropping frame at the request of the IPA ("
<< dropFrameCount_ << " left)";
LOG(RPI, Debug) << "Dropping frame at the request of the IPA ("
<< dropFrameCount_ << " left)";
}
}
}