reduce severity to error in case...

...no suitable egl platform could be selected
This commit is contained in:
Christian Meissl 2021-05-16 10:58:29 +02:00
parent 8dc94e0817
commit f20ff8a178
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ fn select_platform_display<N: EGLNativeDisplay + 'static>(
return Ok(display); return Ok(display);
} }
crit!(log, "Unable to find suitable EGL platform"); error!(log, "Unable to find suitable EGL platform");
Err(Error::DisplayNotSupported) Err(Error::DisplayNotSupported)
} }