hard requirement for console version match #4187

This commit is contained in:
rusefillc 2022-05-29 10:53:10 -04:00
parent ac3b854b07
commit 97c73b3a4e
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ TsChannelBase::TsChannelBase(const char *name) {
void TsChannelBase::assertPacketSize(size_t size, bool allowLongPackets) {
if (isBigPacket(size) && !allowLongPackets) {
firmwareError(OBD_PCM_Processor_Fault, "tried to send disallowed long packet of size %d", size);
firmwareError(OBD_PCM_Processor_Fault, "[USE PROPER CONSOLE VERSION ] disallowed long packet of size %d", size);
}
}