mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-14 16:09:51 +03:00
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:
parent
63dcbc7cf2
commit
eff9de397a
1 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue