boardd: log when sendcan is dropped (#28224)

* log when we drop sendcan

* log both

* i don't want to touch that

* llu

* noo
old-commit-hash: c722120a88ece813615a4cb397dedfefd9ff0d27
This commit is contained in:
Shane Smiskol
2023-05-17 22:19:35 -07:00
committed by GitHub
parent b6fe3eac41
commit 3627c5c7f6
+2
View File
@@ -232,6 +232,8 @@ void can_send_thread(std::vector<Panda *> pandas, bool fake_send) {
panda->can_send(event.getSendcan());
LOGT("sendcan sent to panda: %s", (panda->hw_serial()).c_str());
}
} else {
LOGE("sendcan too old to send: %llu, %llu", nanos_since_boot(), event.getLogMonoTime());
}
}
}