From 81b693b3aac35dfea79a8a28ec9fee7e23e4849a Mon Sep 17 00:00:00 2001
From: Simon McVittie <smcv@collabora.com>
Date: Thu, 9 Jan 2020 13:43:08 +0000
Subject: [PATCH] graphics: Improve debug logging for DRI-style drivers

Signed-off-by: Simon McVittie <smcv@collabora.com>
---
 steam-runtime-tools/graphics.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/steam-runtime-tools/graphics.c b/steam-runtime-tools/graphics.c
index 3ffaf0268..84d494b36 100644
--- a/steam-runtime-tools/graphics.c
+++ b/steam-runtime-tools/graphics.c
@@ -2455,7 +2455,9 @@ _srt_get_extra_modules_directory (const gchar *library_search_path,
     }
 
   ret = g_list_prepend (ret, g_build_filename (dir, "lib", "dri", NULL));
+  g_debug ("Looking in lib directory: %s", (const char *) ret->data);
   ret = g_list_prepend (ret, g_build_filename (dir, libqual, "dri", NULL));
+  g_debug ("Looking in libQUAL directory: %s", (const char *) ret->data);
 
 out:
   g_free (lib_multiarch);
@@ -2505,6 +2507,10 @@ _srt_get_modules_from_path (gchar **envp,
   g_return_if_fail (module_directory_path != NULL);
   g_return_if_fail (drivers_out != NULL);
 
+  g_debug ("Looking for %sdrivers in %s",
+           is_extra ? "extra " : "",
+           module_directory_path);
+
   switch (module)
     {
       case SRT_GRAPHICS_DRI_MODULE:
-- 
GitLab