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>
This commit is contained in:
Olivier Fourdan 2021-11-15 16:02:34 +01:00
parent da9d012a9c
commit 96c82befa2

View File

@ -1079,7 +1079,7 @@ xwl_eglstream_get_device(struct xwl_screen *xwl_screen)
free(devices); free(devices);
out: out:
if (!device) if (!device)
ErrorF("glamor: No eglstream capable devices found\n"); LogMessageVerb(X_INFO, 3, "glamor: No eglstream capable devices found\n");
return device; return device;
} }