You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
288 B
17 lines
288 B
9 years ago
|
#ifndef _SWAY_LOG_H
|
||
|
#define _SWAY_LOG_H
|
||
|
|
||
|
typedef enum {
|
||
9 years ago
|
L_SILENT = 0,
|
||
|
L_ERROR = 1,
|
||
|
L_INFO = 2,
|
||
|
L_DEBUG = 3,
|
||
9 years ago
|
} log_importance_t;
|
||
|
|
||
|
void init_log(int verbosity);
|
||
9 years ago
|
void sway_log_colors(int mode);
|
||
9 years ago
|
void sway_log(int verbosity, char* format, ...);
|
||
|
void sway_abort(char* format, ...);
|
||
9 years ago
|
|
||
|
#endif
|