cameraview.cc: qInfo -> qDebug

old-commit-hash: ca800da8951f83892a3593b2203e74be6af53844
This commit is contained in:
Willem Melching
2022-06-30 14:25:32 +02:00
parent bfcd08324c
commit 917ea653e9
+2 -2
View File
@@ -244,9 +244,9 @@ void CameraViewWidget::paintGL() {
// Log duplicate/dropped frames
if (frames[frame_idx].first == prev_frame_id) {
qInfo() << "Drawing same frame twice" << frames[frame_idx].first;
qDebug() << "Drawing same frame twice" << frames[frame_idx].first;
} else if (frames[frame_idx].first != prev_frame_id + 1) {
qInfo() << "Skipped frame" << frames[frame_idx].first;
qDebug() << "Skipped frame" << frames[frame_idx].first;
}
prev_frame_id = frames[frame_idx].first;