aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
Diffstat (limited to 'crates')
-rw-r--r--crates/rust-analyzer/tests/rust-analyzer/support.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/rust-analyzer/tests/rust-analyzer/support.rs b/crates/rust-analyzer/tests/rust-analyzer/support.rs
index f59958e8d..4c4b994fe 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> {
64 let tmp_dir = self.tmp_dir.unwrap_or_else(|| TestDir::new()); 64 let tmp_dir = self.tmp_dir.unwrap_or_else(|| TestDir::new());
65 static INIT: Once = Once::new(); 65 static INIT: Once = Once::new();
66 INIT.call_once(|| { 66 INIT.call_once(|| {
67 env_logger::builder().is_test(true).try_init().unwrap(); 67 env_logger::builder().is_test(true).parse_env("RA_LOG").try_init().unwrap();
68 profile::init_from(crate::PROFILE); 68 profile::init_from(crate::PROFILE);
69 }); 69 });
70 70