diff options
author | Olivier Fourdan <ofourdan@redhat.com> | 2021-11-15 16:02:34 +0100 |
---|---|---|
committer | Olivier Fourdan <ofourdan@redhat.com> | 2021-12-01 15:12:06 +0100 |
commit | 96c82befa2c3f3dc3534743c67cc003c2106e9b0 (patch) | |
tree | d183209ec57f1fb749809e7ec330aa9d77fa9419 /hw | |
parent | da9d012a9c760896941769d4127e3cfb1a7a9f03 (diff) |
xwayland/eglstream: Demote EGLstream device warning
If no EGLstream capable device is found at startup, Xwayland's EGLstream
backend will log an error message "glamor: No eglstream capable devices
found".
However, considering that the vast majority of drivers do not implement
EGLstream, the lack of EGLstream capable device is more of the norm than
the exception.
Change the error message to a log verbose message.
Signed-off-by: Olivier Fourdan <ofourdan@redhat.com>
Reviewed-by: Simon Ser <contact@emersion.fr>
Reviewed-by: Jonas Ã…dahl <jadahl@gmail.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/xwayland/xwayland-glamor-eglstream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xwayland/xwayland-glamor-eglstream.c b/hw/xwayland/xwayland-glamor-eglstream.c index 28666460d..244fc68e9 100644 --- a/hw/xwayland/xwayland-glamor-eglstream.c +++ b/hw/xwayland/xwayland-glamor-eglstream.c @@ -1079,7 +1079,7 @@ xwl_eglstream_get_device(struct xwl_screen *xwl_screen) free(devices); out: if (!device) - ErrorF("glamor: No eglstream capable devices found\n"); + LogMessageVerb(X_INFO, 3, "glamor: No eglstream capable devices found\n"); return device; } |