ublox logs level logging.debug -> logging.info

old-commit-hash: 8573bdbf2fd3e761bd50a3a8fab051b21e586a0a
This commit is contained in:
Willem Melching
2021-03-15 12:53:54 +01:00
parent f1dc58a5f6
commit 34d83b2ba1
+1 -1
View File
@@ -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) {
LOGD("ublox receive timeout, msg class: 0x%02x, dt %llu", msg_cls, dt);
LOG("ublox receive timeout, msg class: 0x%02x, dt %llu", msg_cls, dt);
// TODO: turn on reset after verification of logs
// need_reset = true;
}