The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

c/main: switch wayland direct log from debug to info

Part-of: <https://gitlab.freedesktop.org/monado/monado/-/merge_requests/2295>

authored by

Simon Zeni and committed by
Marge Bot
6d1aca80 570c9563

+4 -4
+4 -4
src/xrt/compositor/main/comp_window_direct_wayland.c
··· 274 274 _lease_connector_done(void *data, struct wp_drm_lease_connector_v1 *wp_drm_lease_connector_v1) 275 275 { 276 276 struct direct_wayland_lease_connector *conn = data; 277 - COMP_DEBUG(conn->w->base.base.c, "[%s] connector %s (%s) id: %d", conn->dev->path, conn->name, 278 - conn->description, conn->id); 277 + COMP_INFO(conn->w->base.base.c, "[%s] connector %s (%s) id: %d", conn->dev->path, conn->name, conn->description, 278 + conn->id); 279 279 } 280 280 281 281 static void 282 282 _lease_connector_withdrawn(void *data, struct wp_drm_lease_connector_v1 *wp_drm_lease_connector_v1) 283 283 { 284 284 struct direct_wayland_lease_connector *conn = data; 285 - COMP_DEBUG(conn->w->base.base.c, "Connector %s has been withdrawn by the compositor", conn->name); 285 + COMP_INFO(conn->w->base.base.c, "Connector %s has been withdrawn by the compositor", conn->name); 286 286 if (conn == conn->w->selected_connector && !conn->w->lease->lease) { 287 287 conn->w->selected_connector = NULL; 288 288 } ··· 302 302 struct direct_wayland_lease_device *dev = data; 303 303 dev->drm_fd = fd; 304 304 dev->path = drmGetDeviceNameFromFd2(fd); 305 - COMP_DEBUG(dev->w->base.base.c, "Available DRM lease device: %s", dev->path); 305 + COMP_INFO(dev->w->base.base.c, "Available DRM lease device: %s", dev->path); 306 306 } 307 307 308 308 static void