From 199a7ccd216127f8c5daffc6bb9be2fb3327863f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 23 Nov 2019 13:50:29 +0100 Subject: [PATCH] bar/wayland: change disconnected log type from warn -> info Because being disconnected from Wayland is how we typically exit. --- bar/wayland.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bar/wayland.c b/bar/wayland.c index fba90ec..af40599 100644 --- a/bar/wayland.c +++ b/bar/wayland.c @@ -855,7 +855,7 @@ loop(struct bar *_bar, } if (fds[1].revents & POLLHUP) { - LOG_WARN("disconnected from wayland"); + LOG_INFO("disconnected from wayland"); if (write(_bar->abort_fd, &(uint64_t){1}, sizeof(uint64_t)) != sizeof(uint64_t)) {