diff --git a/aqhome/ipc2/mqttmsgreader.c b/aqhome/ipc2/mqttmsgreader.c index 7b30dc6..581bbc4 100644 --- a/aqhome/ipc2/mqttmsgreader.c +++ b/aqhome/ipc2/mqttmsgreader.c @@ -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;