Skip to content
Snippets Groups Projects
Unverified Commit 7e77ac7a authored by Ken Bannister's avatar Ken Bannister Committed by GitHub
Browse files

Merge pull request #10845 from kb2ma/nanocoap/server_debug_msg

net/nanocoap: add debug message for server
parents 33c43626 b4f8b7a1
No related branches found
No related tags found
No related merge requests found
......@@ -145,6 +145,9 @@ int nanocoap_server(sock_udp_ep_t *local, uint8_t *buf, size_t bufsize)
if ((res = coap_handle_req(&pkt, buf, bufsize)) > 0) {
res = sock_udp_send(&sock, buf, res, &remote);
}
else {
DEBUG("error handling request %d\n", (int)res);
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment