this log message deserves a promotion!

This commit is contained in:
rusefillc 2022-02-11 11:07:38 -05:00
parent fd3bb9719f
commit 5e779208e7
1 changed files with 1 additions and 2 deletions

View File

@ -79,8 +79,7 @@ public class IncomingDataBuffer {
boolean isCrcOk = actualCrc == packetCrc; boolean isCrcOk = actualCrc == packetCrc;
if (!isCrcOk) { if (!isCrcOk) {
if (log.debugEnabled()) log.error(String.format("CRC mismatch %x: vs %x", actualCrc, packetCrc));
log.debug(String.format("CRC mismatch %x: vs %x", actualCrc, packetCrc));
return null; return null;
} }
onPacketArrived(); onPacketArrived();