aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xcursor/wlr_xcursor.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/xcursor/wlr_xcursor.c b/xcursor/wlr_xcursor.c
index a11d77a0..a35db0dd 100644
--- a/xcursor/wlr_xcursor.c
+++ b/xcursor/wlr_xcursor.c
@@ -240,15 +240,8 @@ struct wlr_xcursor_theme *wlr_xcursor_theme_load(const char *name, int size) {
load_default_theme(theme);
}
- wlr_log(WLR_DEBUG, "Loaded cursor theme '%s', available cursors:",
- theme->name);
- for (size_t i = 0; i < theme->cursor_count; ++i) {
- struct wlr_xcursor *c = theme->cursors[i];
- struct wlr_xcursor_image *i = c->images[0];
- wlr_log(WLR_DEBUG, "%s (%u images) %" PRIu32 "x%" PRIu32 "+%" PRIu32 ",%" PRIu32,
- c->name, c->image_count,
- i->width, i->height, i->hotspot_x, i->hotspot_y);
- }
+ wlr_log(WLR_DEBUG, "Loaded cursor theme '%s' at size %d (%d available cursors)",
+ theme->name, size, theme->cursor_count);
return theme;