mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
xwayland: improve startup log message
Logging the raw Xwayland command-line was incomplete, uninformative and confusing for end-users. Instead, print a proper message in English.
This commit is contained in:
parent
a2419eb4ea
commit
d2b6b570ea
1 changed files with 1 additions and 3 deletions
|
@ -96,9 +96,7 @@ noreturn static void exec_xwayland(struct wlr_xwayland_server *server) {
|
||||||
snprintf(wayland_socket_str, sizeof(wayland_socket_str), "%d", server->wl_fd[1]);
|
snprintf(wayland_socket_str, sizeof(wayland_socket_str), "%d", server->wl_fd[1]);
|
||||||
setenv("WAYLAND_SOCKET", wayland_socket_str, true);
|
setenv("WAYLAND_SOCKET", wayland_socket_str, true);
|
||||||
|
|
||||||
wlr_log(WLR_INFO, "WAYLAND_SOCKET=%d Xwayland :%d -rootless -terminate -core -listenfd %d -listenfd %d -wm %d",
|
wlr_log(WLR_INFO, "Starting Xwayland on :%d", server->display);
|
||||||
server->wl_fd[1], server->display, server->x_fd[0],
|
|
||||||
server->x_fd[1], server->wm_fd[1]);
|
|
||||||
|
|
||||||
// Closes stdout/stderr depending on log verbosity
|
// Closes stdout/stderr depending on log verbosity
|
||||||
enum wlr_log_importance verbosity = wlr_log_get_verbosity();
|
enum wlr_log_importance verbosity = wlr_log_get_verbosity();
|
||||||
|
|
Loading…
Reference in a new issue