mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-15 16:35:06 +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,7 +130,7 @@ int Stream::queueBuffer(FrameBuffer *buffer)
|
||||||
*/
|
*/
|
||||||
if (!buffer) {
|
if (!buffer) {
|
||||||
if (availableBuffers_.empty()) {
|
if (availableBuffers_.empty()) {
|
||||||
LOG(RPISTREAM, Info) << "No buffers available for "
|
LOG(RPISTREAM, Debug) << "No buffers available for "
|
||||||
<< name_;
|
<< name_;
|
||||||
/*
|
/*
|
||||||
* Note that we need to queue an internal buffer as soon
|
* Note that we need to queue an internal buffer as soon
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue