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:
parent
392304706b
commit
fe24cac70b
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue