From 51bbf31742a9317f20148b0eeb886b7cad23b81b Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Thu, 7 May 2020 12:08:26 +0200 Subject: [PATCH] backend/drm: print error in set_plane_props This makes it easier to understand which plane failed. --- backend/drm/atomic.c | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/drm/atomic.c b/backend/drm/atomic.c index 189ad0a1..f58a5b72 100644 --- a/backend/drm/atomic.c +++ b/backend/drm/atomic.c @@ -142,6 +142,7 @@ static void set_plane_props(struct atomic *atom, struct wlr_drm_backend *drm, return; error: + wlr_log(WLR_ERROR, "Failed to set plane %"PRIu32" properties", plane->id); atom->failed = true; }