Replace deprecated simple_logger initialization

This commit is contained in:
Logan Magee
2020-09-09 17:58:30 -08:00
committed by GitHub
parent c66489dbb1
commit e4754999b7
21 changed files with 47 additions and 21 deletions

View File

@@ -1,5 +1,6 @@
#[cfg(not(target_arch = "wasm32"))]
fn main() {
use simple_logger::SimpleLogger;
use winit::{
event::{Event, WindowEvent},
event_loop::{ControlFlow, EventLoop},
@@ -11,7 +12,7 @@ fn main() {
Timer,
}
simple_logger::init().unwrap();
SimpleLogger::new().init().unwrap();
let event_loop = EventLoop::<CustomEvent>::with_user_event();
let _window = WindowBuilder::new()