gui: RUST_LOG defaults to info
This commit is contained in:
parent
789eaf275f
commit
f40269622a
|
@ -10,6 +10,9 @@ mod config;
|
|||
mod gamelist;
|
||||
|
||||
fn main() {
|
||||
if std::env::var_os("RUST_LOG").is_none() {
|
||||
std::env::set_var("RUST_LOG", "info");
|
||||
}
|
||||
env_logger::init();
|
||||
#[cfg(not(all(
|
||||
target_os = "macos",
|
||||
|
|
Loading…
Reference in a new issue