Skip to content

Commit 8ad051d

Browse files
committed
* FIX [mqtt/proto] Update the level of logs.
Signed-off-by: wanghaemq <[email protected]>
1 parent 89628bd commit 8ad051d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mqtt/protocol/mqtt/mqtt_quic_client.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1086,7 +1086,7 @@ mqtt_timer_cb(void *arg)
10861086
if (msg != NULL) {
10871087
nni_msg_clone(msg);
10881088
s->lastpid = pid;
1089-
log_info("NO.%d Batch sending id%d msg%p", s->batchcnt-1, pid, msg);
1089+
log_debug("NO.%d Batch sending id%d msg%p", s->batchcnt-1, pid, msg);
10901090
ptype = nni_mqtt_msg_get_packet_type(msg);
10911091
if (ptype == NNG_MQTT_PUBLISH)
10921092
nni_mqtt_msg_set_publish_dup(msg, true);
@@ -1143,7 +1143,7 @@ mqtt_timer_cb(void *arg)
11431143
ptype = nni_mqtt_msg_get_packet_type(msg);
11441144
s->lastpid = pid;
11451145
s->batchcnt ++;
1146-
log_info("Batch sending started id%d msg%p", pid, msg);
1146+
log_debug("Batch sending started id%d msg%p", pid, msg);
11471147
if (ptype == NNG_MQTT_PUBLISH)
11481148
nni_mqtt_msg_set_publish_dup(msg, true);
11491149
if (!p->busy) {

0 commit comments

Comments
 (0)