summaryrefslogtreecommitdiff
path: root/sway/commands/exec.c
diff options
context:
space:
mode:
authorDominique Martinet <[email protected]>2018-01-05 22:32:51 +0100
committerDominique Martinet <[email protected]>2018-01-05 23:39:46 +0100
commit67985e903188a464e602d04f9ed218bd397f5ab1 (patch)
tree3589175749c9a2ed746b0cc280ab3ccfb33125e9 /sway/commands/exec.c
parentfdc92e745498a4e0707a51c3fd3390d462e9ae59 (diff)
sway: change all sway_log to wlr_log
Diffstat (limited to 'sway/commands/exec.c')
-rw-r--r--sway/commands/exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/exec.c b/sway/commands/exec.c
index fbbc4941..363d5bef 100644
--- a/sway/commands/exec.c
+++ b/sway/commands/exec.c
@@ -8,7 +8,7 @@ struct cmd_results *cmd_exec(int argc, char **argv) {
if (!config->active) return cmd_results_new(CMD_DEFER, "exec", NULL);
if (config->reloading) {
char *args = join_args(argv, argc);
- sway_log(L_DEBUG, "Ignoring 'exec %s' due to reload", args);
+ wlr_log(L_DEBUG, "Ignoring 'exec %s' due to reload", args);
free(args);
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}