From: Johan Malm Date: Sat, 2 Mar 2024 19:40:33 +0000 (+0000) Subject: action: reduce MoveToOutput logging X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=4ddeb3cd4224628c0a48fec5edc72b64a1ba08d7;p=proto%2Flabwc.git action: reduce MoveToOutput logging --- diff --git a/src/action.c b/src/action.c index 953f62e7..1cf8960a 100644 --- a/src/action.c +++ b/src/action.c @@ -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);