We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15e707b commit 47a40a0Copy full SHA for 47a40a0
src/toolchain/mod.rs
@@ -64,7 +64,7 @@ pub trait Installable {
64
fn https_proxy() -> Option<String> {
65
for proxy in ["https_proxy", "HTTPS_PROXY", "all_proxy", "ALL_PROXY"] {
66
if let Ok(proxy_addr) = std::env::var(proxy) {
67
- debug!("Getting Proxy from env var: {}={}", proxy, proxy_addr);
+ info!("Get Proxy from env var: {}={}", proxy, proxy_addr);
68
return Some(proxy_addr);
69
}
70
0 commit comments