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