From eff9de397ac37e948e5ca603814fcaba9bcd8df5 Mon Sep 17 00:00:00 2001 From: Naushir Patuck Date: Mon, 10 Jan 2022 10:23:42 +0000 Subject: 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 Reviewed-by: David Plowman Reviewed-by: Laurent Pinchart Reviewed-by: Kieran Bingham Signed-off-by: Laurent Pinchart --- src/libcamera/pipeline/raspberrypi/rpi_stream.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcamera/pipeline/raspberrypi/rpi_stream.cpp b/src/libcamera/pipeline/raspberrypi/rpi_stream.cpp index bab80d25..a4159e20 100644 --- a/src/libcamera/pipeline/raspberrypi/rpi_stream.cpp +++ b/src/libcamera/pipeline/raspberrypi/rpi_stream.cpp @@ -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. -- cgit v1.2.1