• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <stdarg.h>
4 #include <time.h>
5 
6 #include "esp_log.h"
7 
esp_log_write(esp_log_level_t level,const char * tag,const char * format,...)8 void esp_log_write(esp_log_level_t level,
9                    const char *tag,
10                    const char *format, ...)
11 {
12     va_list arg;
13     va_start(arg, format);
14     vprintf(format, arg);
15     va_end(arg);
16 }
17 
esp_log_timestamp(void)18 uint32_t esp_log_timestamp(void)
19 {
20     return 0;
21 }
22