diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-01-06 09:31:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-06 09:31:34 -0500 |
commit | 5a23959242419169fa4af032d85ee3f65e7041e4 (patch) | |
tree | 79386d3d2aa90718f8c071a3337c695cb8a71f78 /sway/input/keyboard.c | |
parent | fdc92e745498a4e0707a51c3fd3390d462e9ae59 (diff) | |
parent | d4ddfec32e15fd1f47568f1b82eacc27cda5266a (diff) |
Merge pull request #1556 from martinetd/cleanup_logging
Cleanup logging
Diffstat (limited to 'sway/input/keyboard.c')
-rw-r--r-- | sway/input/keyboard.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sway/input/keyboard.c b/sway/input/keyboard.c index c2bb2578..e7539c48 100644 --- a/sway/input/keyboard.c +++ b/sway/input/keyboard.c @@ -90,11 +90,11 @@ static bool binding_matches_key_state(struct sway_binding *binding, } static void binding_execute_command(struct sway_binding *binding) { - sway_log(L_DEBUG, "running command for binding: %s", + wlr_log(L_DEBUG, "running command for binding: %s", binding->command); struct cmd_results *results = handle_command(binding->command); if (results->status != CMD_SUCCESS) { - sway_log(L_DEBUG, "could not run command for binding: %s", + wlr_log(L_DEBUG, "could not run command for binding: %s", binding->command); } free_cmd_results(results); @@ -467,7 +467,7 @@ void sway_keyboard_configure(struct sway_keyboard *keyboard) { xkb_keymap_new_from_names(context, &rules, XKB_KEYMAP_COMPILE_NO_FLAGS); if (!keymap) { - sway_log(L_DEBUG, "cannot configure keyboard: keymap does not exist"); + wlr_log(L_DEBUG, "cannot configure keyboard: keymap does not exist"); xkb_context_unref(context); return; } |