summaryrefslogtreecommitdiffstats
path: root/sway/debug_log.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/debug_log.c')
-rw-r--r--sway/debug_log.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sway/debug_log.c b/sway/debug_log.c
index f804a541..7c988464 100644
--- a/sway/debug_log.c
+++ b/sway/debug_log.c
@@ -12,8 +12,6 @@
12#include <stringop.h> 12#include <stringop.h>
13#include "workspace.h" 13#include "workspace.h"
14 14
15extern log_importance_t v;
16
17/* XXX:DEBUG:XXX */ 15/* XXX:DEBUG:XXX */
18static void container_log(const swayc_t *c, int depth) { 16static void container_log(const swayc_t *c, int depth) {
19 fprintf(stderr, "focus:%c", 17 fprintf(stderr, "focus:%c",
@@ -49,7 +47,7 @@ static void container_log(const swayc_t *c, int depth) {
49 fprintf(stderr, "name:%.16s\n", c->name); 47 fprintf(stderr, "name:%.16s\n", c->name);
50} 48}
51void layout_log(const swayc_t *c, int depth) { 49void layout_log(const swayc_t *c, int depth) {
52 if (L_DEBUG > v) return; 50 if (L_DEBUG > get_log_level()) return;
53 int i, d; 51 int i, d;
54 int e = c->children ? c->children->length : 0; 52 int e = c->children ? c->children->length : 0;
55 container_log(c, depth); 53 container_log(c, depth);