diff options
author | Ryan Walklin <ryan@testtoast.com> | 2018-11-26 21:11:56 +0000 |
---|---|---|
committer | Ryan Walklin <ryan@crackotage.local> | 2018-12-15 14:42:35 +1100 |
commit | 62a9cf87fafdbc5f271ea1489f3d3f6bd7288b6e (patch) | |
tree | 5f73eddd5123bc60a10c05254ddaf8a27be93c3a /rootston | |
parent | cd7a6daf48ec8f0203e6c7ec42d53806006653a5 (diff) |
Remove debug logs
Diffstat (limited to 'rootston')
-rw-r--r-- | rootston/config.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/rootston/config.c b/rootston/config.c index c3170c08..addc9d24 100644 --- a/rootston/config.c +++ b/rootston/config.c @@ -203,7 +203,6 @@ void add_binding_config(struct wl_list *bindings, const char* combination, void add_switch_config(struct wl_list *switches, const char *switch_name, const char *action, const char* command) { - wlr_log(WLR_DEBUG, "config switch %s: %s = %s", switch_name, action, command); struct roots_switch_config *sc = calloc(1, sizeof(struct roots_switch_config)); if (strcmp(switch_name, "tablet") == 0) { @@ -226,7 +225,6 @@ void add_switch_config(struct wl_list *switches, const char *switch_name, const } sc->command = strdup(command); wl_list_insert(switches, &sc->link); - wlr_log(WLR_DEBUG, "config %s: type %i state %i command %s", switch_name, sc->switch_type, sc->switch_state, sc->command); } static void config_handle_cursor(struct roots_config *config, |