OmLog.h
IntroductionUse the links in the table of contents to the left to access the documentation. Functions
ipAddressToStringUtility to convert an ESP8266 ip address to a printable string. const char *ipAddressToString( IPAddress ip); Macro Definitions
OMERRA formatted printing helper. Like OMLOG, but has E for error. #define OMERR(_args...) OmLog::logS(__FILE__, __LINE__, 'E', _args) OMLOGA formatted printing helper. It adds the file and line number to the output. #define OMLOG(_args...) OmLog::logS(__FILE__, __LINE__, '*', _args) |