blob: 8bda613463e4a038d01248de0236a432bd900149 [file] [log] [blame]
Philip Tricca391e8892017-02-08 13:15:27 -08001#ifndef LOG_h
2#define LOG_H
3
4typedef enum {
5 DEBUG,
6 INFO,
7 WARNING,
8 ERROR,
9 OFF
10} log_level;
11
12const char* level_to_str (log_level level);
13
14#endif /* LOG_H */