aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2020-11-16 13:53:49 +0100
committerSimon Ser <contact@emersion.fr>2020-11-16 13:53:49 +0100
commit83389da5832eee448a47d11508c7d107d3871de7 (patch)
tree25448134c7eaff12074ad4ba7959773e60d233a6
parent9d6787d10d3800ff4873ad6ac3abe4b096090427 (diff)
Log which output is using direct scan-out
-rw-r--r--sway/desktop/output.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index cf2456ef..c21cdb00 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -580,10 +580,12 @@ static int output_repaint_timer_handler(void *data) {
scan_out_fullscreen_view(output, fullscreen_con->view);
if (scanned_out && !last_scanned_out) {
- sway_log(SWAY_DEBUG, "Scanning out fullscreen view");
+ sway_log(SWAY_DEBUG, "Scanning out fullscreen view on %s",
+ output->wlr_output->name);
}
if (last_scanned_out && !scanned_out) {
- sway_log(SWAY_DEBUG, "Stopping fullscreen view scan out");
+ sway_log(SWAY_DEBUG, "Stopping fullscreen view scan out on %s",
+ output->wlr_output->name);
}
last_scanned_out = scanned_out;