blob: c3742a0e0a82195a4a2ab9c78905580d7487e642 [file] [log] [blame]
#ifndef LOG_H
#define LOG_H
typedef enum {
DEBUG,
INFO,
WARNING,
ERROR,
OFF
} log_level;
const char* level_to_str (log_level level);
#endif /* LOG_H */