summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNaushir Patuck <naush@raspberrypi.com>2021-12-08 12:36:36 +0000
committerKieran Bingham <kieran.bingham@ideasonboard.com>2021-12-08 14:45:30 +0000
commit59644205705c3c96331479f9b6603fea90c87145 (patch)
treeae328e1c61c0973b632d985edb679f139c5d99cc /src
parent1c88396a54f832e717b64c6bc27d75d1e357f0c5 (diff)
pipeline: raspberrypi: Reduce logging verbosity
Demote a couple of lines of logging to Debug level to reduce the verbosity of the log output during startup. Signed-off-by: Naushir Patuck <naush@raspberrypi.com> Reviewed-by: David Plowman <david.plowman@raspberrypi.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src')
-rw-r--r--src/libcamera/pipeline/raspberrypi/raspberrypi.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp b/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp
index 22c8ee68..101aaea3 100644
--- a/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp
+++ b/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp
@@ -161,10 +161,10 @@ V4L2SubdeviceFormat findBestFormat(const SensorFormats &formatsMap, const Size &
bestFormat.size = size;
}
- LOG(RPI, Info) << "Format: " << size.toString()
- << " fmt " << format.toString()
- << " Score: " << score
- << " (best " << bestScore << ")";
+ LOG(RPI, Debug) << "Format: " << size.toString()
+ << " fmt " << format.toString()
+ << " Score: " << score
+ << " (best " << bestScore << ")";
}
}
@@ -1746,8 +1746,8 @@ void RPiCameraData::checkRequestCompleted()
state_ = State::Idle;
if (dropFrameCount_) {
dropFrameCount_--;
- LOG(RPI, Info) << "Dropping frame at the request of the IPA ("
- << dropFrameCount_ << " left)";
+ LOG(RPI, Debug) << "Dropping frame at the request of the IPA ("
+ << dropFrameCount_ << " left)";
}
}
}