mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 21:13:37 +00:00
Set tracing level to debug when cargo config get env
fails
This commit is contained in:
parent
a021b85be5
commit
02c066cd1c
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ pub(crate) fn cargo_config_env(
|
||||||
tracing::debug!("Discovered cargo config env: {:?}", env);
|
tracing::debug!("Discovered cargo config env: {:?}", env);
|
||||||
})
|
})
|
||||||
.inspect_err(|err| {
|
.inspect_err(|err| {
|
||||||
tracing::error!("Failed to discover cargo config env: {:?}", err);
|
tracing::debug!("Failed to discover cargo config env: {:?}", err);
|
||||||
})
|
})
|
||||||
.unwrap_or_default()
|
.unwrap_or_default()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue