mesa: glx: Reduce error log level

The code that parses LIBGL_DRIVERS_PATH was printing an
error for every attempted dlopen. It's not an error to
have to check multiple items in the path, only an error if
no suitable library is found. Reduced the load error to
a warning to match behavior of dynamic linker.

Signed-off-by: Courtney Goeltzenleuchter <courtney@LunarG.com>
Reviewed-by: Kristian Høgsberg <krh@bitplanet.net>
This commit is contained in:
Courtney Goeltzenleuchter
2014-02-26 14:27:08 -07:00
parent 33f273778b
commit 0406f59eeb
+1 -1
View File
@@ -140,7 +140,7 @@ driOpenDriver(const char *driverName)
if (handle != NULL)
break;
else
ErrorMessageF("dlopen %s failed (%s)\n", realDriverName, dlerror());
InfoMessageF("dlopen %s failed (%s)\n", realDriverName, dlerror());
}
if (!handle)