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 24, 2024
1 parent 21e9013 commit f712ea6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/bevy_render/src/view/window/mod.rs
Expand Up @@ -8,7 +8,7 @@ use crate::{
};
use bevy_app::{App, Plugin};
use bevy_ecs::{entity::EntityHashMap, prelude::*};
use bevy_utils::{default, tracing::debug, HashSet};
use bevy_utils::{default, tracing::debug, warn_once, HashSet};
use bevy_window::{
CompositeAlphaMode, PresentMode, PrimaryWindow, RawHandleWrapper, Window, WindowClosed,
};
Expand Down Expand Up @@ -320,7 +320,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 +334,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 f712ea6

Please sign in to comment.