Fix one remaining wlr_log call

This commit is contained in:
emersion 2019-01-21 13:02:03 +01:00
parent 1211a81aad
commit e134da3023
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48

View file

@ -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));
}
}