From 45e345200391995883963a8487ad90f34cc85189 Mon Sep 17 00:00:00 2001 From: 5trixs0f Date: Mon, 22 Dec 2025 13:37:25 -0500 Subject: [PATCH] workspaces: Removed redundant error message in workspaces_init --- src/workspaces.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/workspaces.c b/src/workspaces.c index a081c536..7b0b8e96 100644 --- a/src/workspaces.c +++ b/src/workspaces.c @@ -429,11 +429,6 @@ workspaces_init(struct server *server) if (initial_name) { initial = workspace_find_by_name(server, initial_name); - if (!initial) { - wlr_log(WLR_ERROR, - "Initial workspace '%s' not found. Falling back to default", - initial_name); - } } if (!initial) { initial = first;