summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/commands.c2
-rw-r--r--sway/container.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sway/commands.c b/sway/commands.c
index eb77c172..7b026fd2 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -619,7 +619,7 @@ static enum cmd_status cmd_output(int argc, char **argv) {
619 619
620 list_add(config->output_configs, output); 620 list_add(config->output_configs, output);
621 621
622 sway_log(L_DEBUG, "Configured output %s to %d x %d @ %d, %d", 622 sway_log(L_DEBUG, "Config stored for output %s (%d x %d @ %d, %d)",
623 output->name, output->width, output->height, output->x, output->y); 623 output->name, output->width, output->height, output->x, output->y);
624 624
625 return CMD_SUCCESS; 625 return CMD_SUCCESS;
diff --git a/sway/container.c b/sway/container.c
index 4c523827..b8ff7150 100644
--- a/sway/container.c
+++ b/sway/container.c
@@ -70,7 +70,7 @@ swayc_t *new_output(wlc_handle handle) {
70 } 70 }
71 } 71 }
72 72
73 sway_log(L_DEBUG, "Added output %lu:%s", handle, name); 73 sway_log(L_DEBUG, "New output %lu:%s", handle, name);
74 74
75 struct output_config *oc = NULL; 75 struct output_config *oc = NULL;
76 int i; 76 int i;