From b0d5af51d06e61bd22b185f794d91a2aef922c3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Tue, 24 Sep 2019 19:43:43 +0200 Subject: [PATCH] main: log (at debug level) global interfaces and their versions --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index b617397a..6c09d766 100644 --- a/main.c +++ b/main.c @@ -199,7 +199,7 @@ static void handle_global(void *data, struct wl_registry *registry, uint32_t name, const char *interface, uint32_t version) { - //LOG_DBG("global: %s", interface); + LOG_DBG("global: %s, version=%u", interface, version); struct terminal *term = data; if (strcmp(interface, wl_compositor_interface.name) == 0) {