Skip to content

Commit 47a40a0

Browse files
committed
logs: make get proxy info so user know it working
1 parent 15e707b commit 47a40a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/toolchain/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ pub trait Installable {
6464
fn https_proxy() -> Option<String> {
6565
for proxy in ["https_proxy", "HTTPS_PROXY", "all_proxy", "ALL_PROXY"] {
6666
if let Ok(proxy_addr) = std::env::var(proxy) {
67-
debug!("Getting Proxy from env var: {}={}", proxy, proxy_addr);
67+
info!("Get Proxy from env var: {}={}", proxy, proxy_addr);
6868
return Some(proxy_addr);
6969
}
7070
}

0 commit comments

Comments
 (0)