sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit e134da3023844e6d6bb23ac6fd65d35598162f9b
parent 1211a81aad18bbc4d9e8fb9973238ad8e7e1f688
Author: emersion <contact@emersion.fr>
Date:   Mon, 21 Jan 2019 13:02:03 +0100

Fix one remaining wlr_log call

Diffstat:
Msway/input/input-manager.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sway/input/input-manager.c b/sway/input/input-manager.c @@ -109,7 +109,8 @@ void input_manager_verify_fallback_seat(void) { static void log_libinput_config_status(enum libinput_config_status status) { if (status != LIBINPUT_CONFIG_STATUS_SUCCESS) { - wlr_log(WLR_DEBUG, "Error: %s", libinput_config_status_to_str(status)); + sway_log(SWAY_ERROR, "Failed to apply libinput config: %s", + libinput_config_status_to_str(status)); } }