gui: RUST_LOG defaults to info

This commit is contained in:
Alex Janka 2024-07-20 18:03:06 +10:00
parent 789eaf275f
commit f40269622a

View file

@ -10,6 +10,9 @@ mod config;
mod gamelist; mod gamelist;
fn main() { fn main() {
if std::env::var_os("RUST_LOG").is_none() {
std::env::set_var("RUST_LOG", "info");
}
env_logger::init(); env_logger::init();
#[cfg(not(all( #[cfg(not(all(
target_os = "macos", target_os = "macos",