cpu/esp32/include/log_module.h

Log module to realize consistent log messages.

void log_write(unsigned level, const char * format, ...)

log_write overridden function

Parameters

level:(unused)
format:String that the function will print

void log_write_tagged(unsigned level, const char * tag, const char * format, ...)

log_write overridden function, tagged version

Parameters

level:Level of the message
tag:Additional information like function or module
format:String that the function will print