From 0605ff3e4d97b29306e1e44e7d3f2e51ff1febce Mon Sep 17 00:00:00 2001 From: cpli Date: Fri, 27 Jan 2023 20:23:52 +0100 Subject: [PATCH] Make display info log as info Previous name: "Make diplay info info" I believe that to be a far more concise and succinct message. Buffet voiced their concerns about informational content, which I must vehemently disagree with. The inclusion of "logging" as a concept in the commit message I see as an entirely superfluous and honestly insulting statement to the programmer's intelligence. To assume that someone would fail to infer that "making something info" is to log it as info is blatantly derogatory. Nonetheless I believe this commit to be important enough to future developer experience to contribute this despite the terrible overreach by the original developer of kiwmi. To hope that this incident is not to be forgotten. Acked-by: buffet --- kiwmi/server.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kiwmi/server.c b/kiwmi/server.c index 2b55371..621c5dc 100644 --- a/kiwmi/server.c +++ b/kiwmi/server.c @@ -114,8 +114,7 @@ server_init(struct kiwmi_server *server, char *config_path) bool server_run(struct kiwmi_server *server) { - wlr_log( - WLR_DEBUG, "Running Wayland server on display '%s'", server->socket); + wlr_log(WLR_INFO, "Running Wayland server on display '%s'", server->socket); setenv("WAYLAND_DISPLAY", server->socket, true);