aboutsummaryrefslogtreecommitdiffstats
path: root/common
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 /common
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 'common')
-rw-r--r--common/log.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/common/log.c b/common/log.c
index ef791bec..56c3834a 100644
--- a/common/log.c
+++ b/common/log.c
@@ -12,9 +12,9 @@
12#include <string.h> 12#include <string.h>
13#include <stringop.h> 13#include <stringop.h>
14 14
15int colored = 1; 15static int colored = 1;
16log_importance_t loglevel_default = L_ERROR; 16static log_importance_t loglevel_default = L_ERROR;
17log_importance_t v = L_SILENT; 17static log_importance_t v = L_SILENT;
18 18
19static const char *verbosity_colors[] = { 19static const char *verbosity_colors[] = {
20 [L_SILENT] = "", 20 [L_SILENT] = "",
@@ -38,6 +38,10 @@ void set_log_level(log_importance_t verbosity) {
38 v = verbosity; 38 v = verbosity;
39} 39}
40 40
41log_importance_t get_log_level(void) {
42 return v;
43}
44
41void reset_log_level(void) { 45void reset_log_level(void) {
42 v = loglevel_default; 46 v = loglevel_default;
43} 47}