action: reduce MoveToOutput logging

This commit is contained in:
Johan Malm 2024-03-02 19:40:33 +00:00 committed by Johan Malm
parent 3c3bcc2765
commit 4ddeb3cd42

View file

@ -932,7 +932,11 @@ actions_run(struct view *activator, struct server *server,
target = view_get_adjacent_output(view, edge, wrap);
}
if (!target) {
wlr_log(WLR_ERROR, "Invalid output.");
/*
* Most likely because we're already on the
* output furthest in the requested direction.
*/
wlr_log(WLR_DEBUG, "Invalid output");
break;
}
view_move_to_output(view, target);