Go to the documentation of this file.
10 #define _COAP_DEBUG_H_
15 #define COAP_DEBUG_FD stdout
19 #define COAP_ERR_FD stderr
42 #define coap_log(...) coap_log_impl(__VA_ARGS__)
48 #define info(...) coap_log(LOG_INFO, __VA_ARGS__)
49 #define warn(...) coap_log(LOG_WARN, __VA_ARGS__)
50 #define debug(...) coap_log(LOG_DEBUG, __VA_ARGS__)
64 #define coap_show_pdu(x)
65 #define coap_print_addr(...)