only:nicer message

This commit is contained in:
rusefillc 2023-11-20 11:57:42 -05:00
parent b5e7fca8f8
commit 034654b379
1 changed files with 2 additions and 2 deletions

View File

@ -410,8 +410,8 @@ static void assertTimeIsLinear() {
efitimems_t gapInMs = msNow - mostRecentMs;
// todo: lower gapInMs threshold?
if (gapInMs > 200) {
firmwareError(ObdCode::WATCH_DOG_SECONDS, "gap in time: now=%d mS, was %d mS, gap=%dmS",
msNow, mostRecentMs, gapInMs);
firmwareError(ObdCode::WATCH_DOG_SECONDS, "gap in time: mostRecentMs %dmS, now=%dmS, gap=%dmS",
mostRecentMs, msNow, gapInMs);
}
}
}