diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2015-10-26 13:41:45 +0100 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2015-10-26 13:41:45 +0100 |
| commit | 8bfe60d68279e6d08031e86665e89093c15a6e70 (patch) | |
| tree | b128d385d9c1889a9ad8e57751e3aab66c2994dc /include | |
| parent | a9b92d3d60b541b5b81aabe6b76c2bb0b4dc33ad (diff) | |
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).
Diffstat (limited to 'include')
| -rw-r--r-- | include/log.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/log.h b/include/log.h index 806725a6..4b769c93 100644 --- a/include/log.h +++ b/include/log.h @@ -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))); |
