From 73eb752eeeda683e1bb104f414bcbe3bff99ddd8 Mon Sep 17 00:00:00 2001 From: Mattias Eriksson Date: Fri, 20 Apr 2018 15:02:15 +0200 Subject: [PATCH] Fix log level --- sway/idle.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sway/idle.c b/sway/idle.c index 1212225be..5f36361eb 100644 --- a/sway/idle.c +++ b/sway/idle.c @@ -19,7 +19,7 @@ void invoke_swaylock() { } static int handle_idle(void* data) { - wlr_log(L_ERROR, "Idle state"); + wlr_log(L_DEBUG, "Idle state"); for (int i = 0; i < root_container.children->length; ++i) { struct sway_container *cont = root_container.children->items[i]; if (cont->type != C_OUTPUT) { @@ -33,7 +33,7 @@ static int handle_idle(void* data) { } static int handle_resume(void *data) { - wlr_log(L_ERROR, "Active state"); + wlr_log(L_DEBUG, "Active state"); for (int i = 0; i < root_container.children->length; ++i) { struct sway_container *cont = root_container.children->items[i]; if (cont->type != C_OUTPUT) {