reduce log spam (#20330)

* fix big spammers

* my favorite test failure

* remove that one

* went down a bit more
This commit is contained in:
Adeeb Shihadeh
2021-03-12 11:45:29 -08:00
committed by GitHub
parent d023397ba9
commit 90795fc773
4 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ void run_model(DMonitoringModelState &model, VisionIpcClient &vipc_client) {
// send dm packet
dmonitoring_publish(pm, extra.frame_id, res, (t2 - t1) / 1000.0, model.output);
LOGD("dmonitoring process: %.2fms, from last %.2fms", t2 - t1, t1 - last);
//printf("dmonitoring process: %.2fms, from last %.2fms\n", t2 - t1, t1 - last);
last = t1;
}
}