commit 4a5828370c27c318a5e6c0113ea9ed559f446be1
parent 19c0ec6a08fd8462bc2060b657277250452eb2ba
Author: Drew DeVault <sir@cmpwn.com>
Date: Sun, 16 Aug 2015 14:51:53 -0400
Log output name when added to tree
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sway/container.c b/sway/container.c
@@ -43,9 +43,9 @@ static void add_output_widths(swayc_t *container, void *_width) {
}
swayc_t *new_output(wlc_handle handle) {
- sway_log(L_DEBUG, "Added output %d", handle);
const struct wlc_size* size = wlc_output_get_resolution(handle);
const char *name = wlc_output_get_name(handle);
+ sway_log(L_DEBUG, "Added output %d %s", handle, name);
swayc_t *output = new_swayc(C_OUTPUT);
output->width = size->w;