From e78221e6a0413b8cccd41f75288798ae15b792b6 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sun, 23 Aug 2015 13:31:16 -0400 Subject: [PATCH] Prefix log events from wlc with [wlc] --- sway/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sway/main.c b/sway/main.c index f8959009..3f2fcd94 100644 --- a/sway/main.c +++ b/sway/main.c @@ -23,11 +23,11 @@ static void sigchld_handle(int signal); static void wlc_log_handler(enum wlc_log_type type, const char *str) { if (type == WLC_LOG_ERROR) { - sway_log(L_ERROR, "%s", str); + sway_log(L_ERROR, "[wlc] %s", str); } else if (type == WLC_LOG_WARN) { - sway_log(L_INFO, "%s", str); + sway_log(L_INFO, "[wlc] %s", str); } else { - sway_log(L_DEBUG, "%s", str); + sway_log(L_DEBUG, "[wlc] %s", str); } }