978d634eb8c0b22b5bcfa33c1f596c8370666d50
[laserbrain_demo] / src / logger.h
1 #ifndef LOGGER_H_
2 #define LOGGER_H_
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 void info_log(const char *fmt, ...);
9 void warning_log(const char *fmt, ...);
10 void error_log(const char *fmt, ...);
11 void fatal_log(const char *fmt, ...);
12 void debug_log(const char *fmt, ...);
13
14 #ifdef __cplusplus
15 }
16 #endif
17
18 #endif  // LOGGER_H_