aqhome: decreased verbosity.

This commit is contained in:
Martin Preuss
2025-03-09 15:04:03 +01:00
parent ea564ba101
commit 9c1188b4d1

View File

@@ -166,9 +166,9 @@ int _readHeaderFromRingbuffer(AQH_MSG_READER *xo)
memmove(xo->currentMsgBuf, xo->headerBuffer, xo->bytesReceived);
xo->bytesLeft=fullMsgSize-xo->bytesReceived;
xo->flags|=AQH_MSG_READER_FLAGS_READBODY;
DBG_ERROR(AQH_LOGDOMAIN,
"Got size: full size=%d, payload pos=%d, payload size=%d (%04x)",
fullMsgSize, idx+1, mqttPayloadLen, mqttPayloadLen);
DBG_VERBOUS(AQH_LOGDOMAIN,
"Got size: full size=%d, payload pos=%d, payload size=%d (%04x)",
fullMsgSize, idx+1, mqttPayloadLen, mqttPayloadLen);
return 1; /* size successfully determined */
}
shift+=7;