Skip to content

Commit

Permalink
Make error message a trace
Browse files Browse the repository at this point in the history
  • Loading branch information
nicopap committed Nov 1, 2022
1 parent fb04948 commit b1698fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/bevy_render/src/view/window.rs
Expand Up @@ -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,
};
Expand Down Expand Up @@ -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."
);
Expand Down

0 comments on commit b1698fe

Please sign in to comment.