mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
remove env_logger from App::build()
This commit is contained in:
parent
686e1422db
commit
819c7708f9
3 changed files with 2 additions and 3 deletions
|
@ -36,6 +36,7 @@ uuid = { version = "0.8", features = ["v4"] }
|
|||
[dev-dependencies]
|
||||
rand = "0.7.2"
|
||||
serde_json = "1.0"
|
||||
env_logger = "0.7"
|
||||
|
||||
[profile.release]
|
||||
debug = true
|
||||
|
|
|
@ -9,5 +9,4 @@ edition = "2018"
|
|||
[dependencies]
|
||||
legion = { path = "../bevy_legion", features = ["serialize"] }
|
||||
libloading = "0.5.2"
|
||||
log = { version = "0.4", features = ["release_max_level_info"] }
|
||||
env_logger = "0.7"
|
||||
log = { version = "0.4", features = ["release_max_level_info"] }
|
|
@ -26,7 +26,6 @@ impl Default for App {
|
|||
|
||||
impl App {
|
||||
pub fn build() -> AppBuilder {
|
||||
env_logger::init();
|
||||
AppBuilder::new()
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue