Skip to content

Commit 2169fc7

Browse files
committed
Set tracing level to debug when cargo config get env fails
1 parent 722f79d commit 2169fc7

File tree

1 file changed

+1
-1
lines changed
  • src/tools/rust-analyzer/crates/project-model/src

1 file changed

+1
-1
lines changed

src/tools/rust-analyzer/crates/project-model/src/env.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ pub(crate) fn cargo_config_env(
8181
tracing::debug!("Discovered cargo config env: {:?}", env);
8282
})
8383
.inspect_err(|err| {
84-
tracing::error!("Failed to discover cargo config env: {:?}", err);
84+
tracing::debug!("Failed to discover cargo config env: {:?}", err);
8585
})
8686
.unwrap_or_default()
8787
}

0 commit comments

Comments
 (0)