2015-08-08 17:01:22 -04:00
|
|
|
#ifndef _SWAY_LOG_H
|
|
|
|
#define _SWAY_LOG_H
|
|
|
|
|
2015-08-15 21:21:20 -07:00
|
|
|
#ifndef __GNUC__
|
|
|
|
# define __attribute__(x)
|
|
|
|
#endif
|
|
|
|
|
2015-08-08 17:01:22 -04:00
|
|
|
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;
|
|
|
|
|
2015-08-15 21:21:20 -07:00
|
|
|
|
2015-08-08 17:01:22 -04:00
|
|
|
void init_log(int verbosity);
|
2015-08-09 20:35:56 +02:00
|
|
|
void sway_log_colors(int mode);
|
2015-08-15 21:21:20 -07:00
|
|
|
void sway_log(int verbosity, char* format, ...)__attribute__((format (printf,2,3)));
|
|
|
|
void sway_abort(char* format, ...) __attribute__((format (printf,1,2)));
|
2015-08-08 17:01:22 -04:00
|
|
|
|
|
|
|
#endif
|