Make some trace statements less frequent

This commit is contained in:
Ian Craggs 2026-02-12 11:00:28 +00:00
parent 6e5366b9af
commit 04b7199798
No known key found for this signature in database
GPG Key ID: A7AE1A8F2CCAB186
1 changed files with 2 additions and 2 deletions

View File

@ -2086,9 +2086,9 @@ thread_return_type WINAPI MQTTAsync_receiveThread(void* n)
MQTTPacket* pack = NULL;
MQTTAsync_unlock_mutex(mqttasync_mutex);
Log(TRACE_PROTOCOL, -1, "MQTTAsync_cycle call timeout %lu", timeout);
Log(TRACE_MINIMUM, -1, "MQTTAsync_cycle call timeout %lu", timeout);
pack = MQTTAsync_cycle(&sock, timeout, &rc);
Log(TRACE_PROTOCOL, -1, "MQTTAsync_cycle returns pack %p, sock %d, timeout %lu, rc %d", pack, sock, timeout, rc);
Log(TRACE_MINIMUM, -1, "MQTTAsync_cycle returns pack %p, sock %d, timeout %lu, rc %d", pack, sock, timeout, rc);
MQTTAsync_lock_mutex(mqttasync_mutex);
if (MQTTAsync_tostop)
break;