WiFi Logger component  1.0
WiFi Logger component, uses wifi to output logs
utils.h
Go to the documentation of this file.
1 #ifndef UTILS_H
2 #define UTILS_H
3 
4 #ifdef __cplusplus
5 #include <string>
6 #include <cstring>
7 extern "C" {
8 #endif
9 
10 char* generate_log_message_timestamp(uint log_level, uint32_t timestamp, char* log_message);
11 
12 #ifdef __cplusplus
13 }
14 #endif
15 
16 #endif
char * generate_log_message_timestamp(uint log_level, uint32_t timestamp, char *log_message)
adds timestamp to the log message
Definition: utils.cpp:14