pipeline: raspberrypi: Demote the category of a logging message

Switch the "no buffers available" log message from Info to Debug so that it does
not get output by default.

Signed-off-by: Naushir Patuck <naush@raspberrypi.com>
Reviewed-by: David Plowman <david.plowman@raspberrypi.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
Naushir Patuck 2022-01-10 10:23:42 +00:00 committed by Laurent Pinchart
parent 63dcbc7cf2
commit eff9de397a

View file

@ -130,8 +130,8 @@ int Stream::queueBuffer(FrameBuffer *buffer)
*/
if (!buffer) {
if (availableBuffers_.empty()) {
LOG(RPISTREAM, Info) << "No buffers available for "
<< name_;
LOG(RPISTREAM, Debug) << "No buffers available for "
<< name_;
/*
* Note that we need to queue an internal buffer as soon
* as one becomes available.