From 7cbef152063e1fbb24e6204339ff4587a74be04b Mon Sep 17 00:00:00 2001 From: emersion Date: Mon, 9 Jul 2018 22:49:54 +0100 Subject: util: add wlr_ prefix to log symbols --- xcursor/wlr_xcursor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xcursor') diff --git a/xcursor/wlr_xcursor.c b/xcursor/wlr_xcursor.c index 38c01efe..2391a49a 100644 --- a/xcursor/wlr_xcursor.c +++ b/xcursor/wlr_xcursor.c @@ -238,12 +238,12 @@ struct wlr_xcursor_theme *wlr_xcursor_theme_load(const char *name, int size) { load_default_theme(theme); } - wlr_log(L_DEBUG, "Loaded cursor theme '%s', available cursors:", + 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(L_DEBUG, "%s (%u images) %dx%d+%d,%d", + wlr_log(WLR_DEBUG, "%s (%u images) %dx%d+%d,%d", c->name, c->image_count, i->width, i->height, i->hotspot_x, i->hotspot_y); } -- cgit v1.2.3