Skip to content

Commit 33986c0

Browse files
committed
disabled error logging for linux fix
1 parent 4f4bf47 commit 33986c0

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "lifecycler"
33
description = "Bevy Game Jam #5 submission. Terminal aquarium."
4-
version = "0.2.3"
4+
version = "0.2.4"
55
edition = "2021"
66
license = "MIT OR Apache-2.0 OR CC0-1.0"
77
authors = ["cxreiff <[email protected]>"]

src/lib.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,7 @@ impl Plugin for AppPlugin {
3131
exit_condition: ExitCondition::DontExit,
3232
close_when_requested: false,
3333
})
34-
.set(LogPlugin {
35-
level: bevy::log::Level::ERROR,
36-
..default()
37-
}),
34+
.disable::<LogPlugin>(),
3835
ScheduleRunnerPlugin::run_loop(Duration::from_secs_f64(1. / 90.)),
3936
FrameTimeDiagnosticsPlugin,
4037
RatatuiPlugins {

0 commit comments

Comments
 (0)