commands: Learn 'debuglog'.

Replicates i3 option. Verbosity level given as command line argument
becomes default log level, and using 'debuglog toggle' switches back and
forth between default and debug (or L_ERROR and debug if default is also
L_DEBUG).
This commit is contained in:
S. Christoffer Eliesen 2015-10-26 13:41:45 +01:00
parent eb847a1b1c
commit 9f02b0bf16
4 changed files with 52 additions and 0 deletions

View file

@ -11,6 +11,10 @@ typedef enum {
} log_importance_t;
void init_log(log_importance_t verbosity);
void set_log_level(log_importance_t verbosity);
void reset_log_level(void);
// returns whether debug logging is on after switching.
bool toggle_debug_logging(void);
void sway_log_colors(int mode);
void sway_log(log_importance_t verbosity, const char* format, ...) __attribute__((format(printf,2,3)));
void sway_log_errno(log_importance_t verbosity, char* format, ...) __attribute__((format(printf,2,3)));