aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/input-manager.c
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2019-01-21 13:02:03 +0100
committerLibravatar emersion <contact@emersion.fr>2019-01-21 13:02:03 +0100
commite134da3023844e6d6bb23ac6fd65d35598162f9b (patch)
tree828c143f786a7b99b0d68ca2d24a233f96d6ab48 /sway/input/input-manager.c
parentReplace wlr_log with sway_log (diff)
downloadsway-e134da3023844e6d6bb23ac6fd65d35598162f9b.tar.gz
sway-e134da3023844e6d6bb23ac6fd65d35598162f9b.tar.zst
sway-e134da3023844e6d6bb23ac6fd65d35598162f9b.zip
Fix one remaining wlr_log call
Diffstat (limited to 'sway/input/input-manager.c')
-rw-r--r--sway/input/input-manager.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/input/input-manager.c b/sway/input/input-manager.c
index 2b4a99d4..8d263e06 100644
--- a/sway/input/input-manager.c
+++ b/sway/input/input-manager.c
@@ -109,7 +109,8 @@ void input_manager_verify_fallback_seat(void) {
109 109
110static void log_libinput_config_status(enum libinput_config_status status) { 110static void log_libinput_config_status(enum libinput_config_status status) {
111 if (status != LIBINPUT_CONFIG_STATUS_SUCCESS) { 111 if (status != LIBINPUT_CONFIG_STATUS_SUCCESS) {
112 wlr_log(WLR_DEBUG, "Error: %s", libinput_config_status_to_str(status)); 112 sway_log(SWAY_ERROR, "Failed to apply libinput config: %s",
113 libinput_config_status_to_str(status));
113 } 114 }
114} 115}
115 116