From 452669d6de94283225d68c2aa707f2ebbd21a78a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Tue, 18 Dec 2018 19:37:03 +0100 Subject: [PATCH] bar: lower case initial letter in log message --- bar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bar.c b/bar.c index b0db1db..148f013 100644 --- a/bar.c +++ b/bar.c @@ -202,7 +202,7 @@ run(struct bar_run_context *run_ctx) const xcb_randr_monitor_info_t *mon = it.data; char *name = get_atom_name(bar->conn, mon->name); - LOG_INFO("Monitor: %s: %ux%u+%u+%u (%ux%umm)", name, + LOG_INFO("monitor: %s: %ux%u+%u+%u (%ux%umm)", name, mon->width, mon->height, mon->x, mon->y, mon->width_in_millimeters, mon->height_in_millimeters);