aboutsummaryrefslogtreecommitdiffstats
path: root/include/log.h
diff options
context:
space:
mode:
authorLibravatar David Eklov <david.eklov@gmail.com>2016-06-27 02:29:37 -0500
committerLibravatar David Eklov <david.eklov@gmail.com>2016-06-27 18:56:50 -0500
commit26842ff3833c853e3e3cef065a494c05736a53e5 (patch)
treed576aeed92f5819b1e873539e6151509eeec529d /include/log.h
parentBug fix: Add missing header file, unistd.h (diff)
downloadsway-26842ff3833c853e3e3cef065a494c05736a53e5.tar.gz
sway-26842ff3833c853e3e3cef065a494c05736a53e5.tar.zst
sway-26842ff3833c853e3e3cef065a494c05736a53e5.zip
Add get_log_level() to encapsulate v (current log level)
This patch also makes all global variable in log.c static.
Diffstat (limited to 'include/log.h')
-rw-r--r--include/log.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/log.h b/include/log.h
index efacf90f..ca8c1fe3 100644
--- a/include/log.h
+++ b/include/log.h
@@ -11,6 +11,7 @@ typedef enum {
11 11
12void init_log(log_importance_t verbosity); 12void init_log(log_importance_t verbosity);
13void set_log_level(log_importance_t verbosity); 13void set_log_level(log_importance_t verbosity);
14log_importance_t get_log_level(void);
14void reset_log_level(void); 15void reset_log_level(void);
15// returns whether debug logging is on after switching. 16// returns whether debug logging is on after switching.
16bool toggle_debug_logging(void); 17bool toggle_debug_logging(void);