summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNaushir Patuck <naush@raspberrypi.com>2022-01-10 10:23:42 +0000
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2022-01-10 17:12:15 +0200
commiteff9de397ac37e948e5ca603814fcaba9bcd8df5 (patch)
treea1e01ab464afb54a2123fde43462bd9d0b868674
parent63dcbc7cf27d30373ef4bbc7facb1eb2cb06f7bd (diff)
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>
-rw-r--r--src/libcamera/pipeline/raspberrypi/rpi_stream.cpp4
1 files 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.