bar/wayland: change disconnected log type from warn -> info

Because being disconnected from Wayland is how we typically exit.
This commit is contained in:
Daniel Eklöf 2019-11-23 13:50:29 +01:00
parent 8c4865e0e3
commit 199a7ccd21
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

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