diff --git a/crates/bevy_render/src/view/window.rs b/crates/bevy_render/src/view/window.rs index c7f8b0fca950e..50e5bcebf6e2e 100644 --- a/crates/bevy_render/src/view/window.rs +++ b/crates/bevy_render/src/view/window.rs @@ -5,7 +5,7 @@ use crate::{ }; use bevy_app::{App, Plugin}; use bevy_ecs::prelude::*; -use bevy_utils::{tracing::debug, HashMap, HashSet}; +use bevy_utils::{tracing::debug, tracing::trace, HashMap, HashSet}; use bevy_window::{ CompositeAlphaMode, PresentMode, RawHandleWrapper, WindowClosed, WindowId, Windows, }; @@ -260,7 +260,7 @@ pub fn prepare_windows( } #[cfg(target_os = "linux")] Err(wgpu::SurfaceError::Timeout) if may_erroneously_timeout() => { - debug!( + trace!( "Couldn't get swap chain texture. This is probably a quirk \ of your Linux GPU driver, so it can be safely ignored." );