commit 6eb8da0e147aa535ec0736684237890ad4291d84
parent aef31910222702c4cef8de17487f87b910a601f3
Author: S. Christoffer Eliesen <christoffer@eliesen.no>
Date: Wed, 21 Oct 2015 22:22:01 +0200
commands,container: Tweak debug output to better reflect reality.
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/sway/commands.c b/sway/commands.c
@@ -619,7 +619,7 @@ static enum cmd_status cmd_output(int argc, char **argv) {
list_add(config->output_configs, output);
- sway_log(L_DEBUG, "Configured output %s to %d x %d @ %d, %d",
+ sway_log(L_DEBUG, "Config stored for output %s (%d x %d @ %d, %d)",
output->name, output->width, output->height, output->x, output->y);
return CMD_SUCCESS;
diff --git a/sway/container.c b/sway/container.c
@@ -70,7 +70,7 @@ swayc_t *new_output(wlc_handle handle) {
}
}
- sway_log(L_DEBUG, "Added output %lu:%s", handle, name);
+ sway_log(L_DEBUG, "New output %lu:%s", handle, name);
struct output_config *oc = NULL;
int i;