We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0de598 commit d082908Copy full SHA for d082908
crates/local_backend/src/main.rs
@@ -37,6 +37,9 @@ use tokio::signal::{
37
};
38
39
fn main() -> Result<(), MainError> {
40
+ if std::env::var_os("RUST_LOG").is_none() {
41
+ std::env::set_var("RUST_LOG", "info");
42
+ }
43
tracing::info!("Starting a local backend");
44
let _guard = config_tool();
45
let config = LocalConfig::parse();
0 commit comments