2015-08-09 07:01:22 +10:00
|
|
|
#ifndef _SWAY_LOG_H
|
|
|
|
#define _SWAY_LOG_H
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
L_SILENT = 0,
|
|
|
|
L_ERROR = 1,
|
|
|
|
L_INFO = 2,
|
|
|
|
L_DEBUG = 3,
|
|
|
|
} log_importance_t;
|
|
|
|
|
|
|
|
void init_log(int verbosity);
|
2015-08-10 04:35:56 +10:00
|
|
|
void sway_log_colors(int mode);
|
2015-08-09 07:01:22 +10:00
|
|
|
void sway_log(int verbosity, char* format, ...);
|
|
|
|
void sway_abort(char* format, ...);
|
|
|
|
|
|
|
|
#endif
|