net: lwm2m: change resend packet to an INF message

To avoid missing important messages, let's change the resend
packet message from a DBG to an INF.

Signed-off-by: Michael Scott <mike@foundries.io>
This commit is contained in:
Michael Scott 2019-02-18 21:54:12 -08:00 committed by Kumar Gala
commit d615ab0dc3

View file

@ -3585,7 +3585,7 @@ static void retransmit_request(struct k_work *work)
return;
}
LOG_DBG("Resending message: %p", msg);
LOG_INF("Resending message: %p", msg);
msg->send_attempts++;
if (send(msg->ctx->sock_fd, msg->cpkt.data, msg->cpkt.offset, 0) < 0) {
LOG_ERR("Error sending lwm2m message: %d", -errno);