From aaf9ceac4bd67a72edb2c532f17d2cc8e003436c Mon Sep 17 00:00:00 2001 From: Willem Melching Date: Mon, 15 Mar 2021 12:14:30 +0100 Subject: [PATCH] boardd.cc: lower log level of ublox timing issues --- selfdrive/boardd/boardd.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/boardd/boardd.cc b/selfdrive/boardd/boardd.cc index d16963d7c1..482da00e39 100644 --- a/selfdrive/boardd/boardd.cc +++ b/selfdrive/boardd/boardd.cc @@ -506,7 +506,7 @@ void pigeon_thread() { for (const auto& [msg_cls, max_dt] : cls_max_dt) { int64_t dt = (int64_t)nanos_since_boot() - (int64_t)last_recv_time[msg_cls]; if (ignition_last && ignition && dt > max_dt) { - LOGE("ublox receive timeout, msg class: 0x%02x, dt %llu, resetting panda GPS", msg_cls, dt); + LOGD("ublox receive timeout, msg class: 0x%02x, dt %llu", msg_cls, dt); // TODO: turn on reset after verification of logs // need_reset = true; }