diff --git a/crates/rust-analyzer/tests/rust-analyzer/support.rs b/crates/rust-analyzer/tests/rust-analyzer/support.rs index f59958e8db7..4c4b994fe59 100644 --- a/crates/rust-analyzer/tests/rust-analyzer/support.rs +++ b/crates/rust-analyzer/tests/rust-analyzer/support.rs @@ -64,7 +64,7 @@ impl<'a> Project<'a> { let tmp_dir = self.tmp_dir.unwrap_or_else(|| TestDir::new()); static INIT: Once = Once::new(); INIT.call_once(|| { - env_logger::builder().is_test(true).try_init().unwrap(); + env_logger::builder().is_test(true).parse_env("RA_LOG").try_init().unwrap(); profile::init_from(crate::PROFILE); });