From c491a21d2560138817c43899d3cd58e9d28e7e89 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Fri, 6 Nov 2020 13:07:29 +0100 Subject: [PATCH] backend/session/logind: log when using XDG_SESSION_ID This makes it easier to figure out how wlroots selected the session. --- backend/session/logind.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/session/logind.c b/backend/session/logind.c index 8859f1a2..0cef1356 100644 --- a/backend/session/logind.c +++ b/backend/session/logind.c @@ -569,6 +569,8 @@ static bool get_display_session(char **session_id) { char *xdg_session_id = getenv("XDG_SESSION_ID"); if (xdg_session_id) { + wlr_log(WLR_INFO, "Selecting session from XDG_SESSION_ID: %s", xdg_session_id); + // This just checks whether the supplied session ID is valid if (sd_session_is_active(xdg_session_id) < 0) { wlr_log(WLR_ERROR, "Invalid XDG_SESSION_ID: '%s'", xdg_session_id);