aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2015-10-26 13:41:45 +0100
committerFurkan Sahin <furkan-dev@proton.me>2015-10-26 13:41:45 +0100
commit8bfe60d68279e6d08031e86665e89093c15a6e70 (patch)
treeb128d385d9c1889a9ad8e57751e3aab66c2994dc /include
parenta9b92d3d60b541b5b81aabe6b76c2bb0b4dc33ad (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.h4
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)));