mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-21 22:52:20 +00:00
backend/drm: log when restoring mode after VT switch fails
Can make it easier to track down issues.
This commit is contained in:
parent
98a83ce14c
commit
0c962c98cc
@ -120,7 +120,9 @@ static void handle_session_active(struct wl_listener *listener, void *data) {
|
||||
.mode_type = WLR_OUTPUT_STATE_MODE_FIXED,
|
||||
.mode = mode,
|
||||
};
|
||||
drm_connector_commit_state(conn, &state);
|
||||
if (!drm_connector_commit_state(conn, &state)) {
|
||||
wlr_drm_conn_log(conn, WLR_ERROR, "Failed to restore state after VT switch");
|
||||
}
|
||||
}
|
||||
} else {
|
||||
wlr_log(WLR_INFO, "DRM fd paused");
|
||||
|
Loading…
Reference in New Issue
Block a user