diff options
author | Courtney Goeltzenleuchter <[email protected]> | 2014-02-26 14:27:08 -0700 |
---|---|---|
committer | Courtney Goeltzenleuchter <[email protected]> | 2014-06-12 10:19:00 -0600 |
commit | 0406f59eebb77e537b50f5cac3a20355686d2a4d (patch) | |
tree | be0c3991ac2b8c1c1a17372b779dce3cc9dd3da2 /src/glx/dri_common.c | |
parent | 33f273778b8c864f52d1b1096a49f053490bf8ca (diff) |
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 <[email protected]>
Reviewed-by: Kristian Høgsberg <[email protected]>
Diffstat (limited to 'src/glx/dri_common.c')
-rw-r--r-- | src/glx/dri_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/dri_common.c b/src/glx/dri_common.c index 8bf47054a32..63c8de38c7c 100644 --- a/src/glx/dri_common.c +++ b/src/glx/dri_common.c @@ -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) |