Fix log level

This commit is contained in:
Mattias Eriksson 2018-04-20 15:02:15 +02:00
parent 83a0a6d450
commit 73eb752eee

View file

@ -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) {