From 931e95d645a1a95ef404dc019da3d4ec52dd762c Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Sun, 5 Mar 2023 16:49:30 -0800 Subject: [PATCH] remove slow qDebug --- selfdrive/ui/qt/onroad.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/ui/qt/onroad.cc b/selfdrive/ui/qt/onroad.cc index c3dcc17af3..187c51bd19 100644 --- a/selfdrive/ui/qt/onroad.cc +++ b/selfdrive/ui/qt/onroad.cc @@ -557,7 +557,7 @@ void AnnotatedCameraWidget::drawLaneLines(QPainter &painter, const UIState *s) { painter.setBrush(bg); painter.drawPolygon(scene.track_vertices); double dt = millis_since_boot() - t; - qDebug() << "Took" << dt << "ms to draw path"; +// qDebug() << "Took" << dt << "ms to draw path"; painter.restore(); }