1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #11135 from miri64/gnrc_sixlowpan_frag/fix/rm-printf

gnrc_sixlowpan_frag: replace printf with DEBUG
This commit is contained in:
Marian Buschsieweke 2019-03-07 20:19:09 +01:00 committed by GitHub
commit 61572445dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -287,7 +287,7 @@ void gnrc_sixlowpan_frag_send(gnrc_pktsnip_t *pkt, void *ctx, unsigned page)
msg.type = GNRC_SIXLOWPAN_MSG_FRAG_SND,
msg.content.ptr = fragment_msg;
if (msg_send_to_self(&msg) == 0) {
printf("6lo frag: message queue full, can't issue next fragment "
DEBUG("6lo frag: message queue full, can't issue next fragment "
"sending\n");
goto error;
}