Bluetooth: Mesh: Clarify log to run out of retransmission attempt

The logs for retransmission attempts for sending segments and ack
retransmission attempts for receiving segments were the same, making it
difficult to distinguish between them. This can be solved by adding
information to the log of ack retransmission.

Signed-off-by: Junho Lee <tot0roprog@gmail.com>
This commit is contained in:
Junho Lee 2024-08-30 08:10:17 +09:00 committed by Carles Cufí
commit fe24cac70b

View file

@ -1219,7 +1219,7 @@ static void seg_ack(struct k_work *work)
rx->last_ack = k_uptime_get_32();
if (rx->attempts_left == 0) {
LOG_DBG("Ran out of retransmit attempts");
LOG_DBG("Ran out of ack retransmit attempts");
return;
}