Skip to content

Commit

Permalink
Warn once instead of debug
Browse files Browse the repository at this point in the history
  • Loading branch information
eero-lehtinen committed Mar 30, 2024
1 parent d2dbf53 commit 8a0eada
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions crates/bevy_render/src/view/window/mod.rs
Expand Up @@ -8,6 +8,8 @@ use crate::{
};
use bevy_app::{App, Plugin};
use bevy_ecs::{entity::EntityHashMap, prelude::*};
#[cfg(target_os = "linux")]
use bevy_utils::warn_once;
use bevy_utils::{default, tracing::debug, HashSet};
use bevy_window::{
CompositeAlphaMode, PresentMode, PrimaryWindow, RawHandleWrapper, Window, WindowClosed,
Expand Down Expand Up @@ -320,7 +322,7 @@ pub fn prepare_windows(
Ok(frame) => window.set_swapchain_texture(frame),
#[cfg(target_os = "linux")]
Err(wgpu::SurfaceError::Outdated) if is_nvidia() => {
bevy_utils::tracing::debug!(
warn_once!(
"Couldn't get swap chain texture. This often happens with \
the Nvidia 550 driver. It can be safely ignored."
);
Expand All @@ -334,7 +336,7 @@ pub fn prepare_windows(
}
#[cfg(target_os = "linux")]
Err(wgpu::SurfaceError::Outdated) if is_nvidia() => {
bevy_utils::tracing::debug!(
warn_once!(
"Couldn't get swap chain texture. This often happens with \
the Nvidia 550 driver. It can be safely ignored."
);
Expand Down

0 comments on commit 8a0eada

Please sign in to comment.