Skip to content

Commit

Permalink
logs: make get proxy info so user know it working
Browse files Browse the repository at this point in the history
  • Loading branch information
discord9 committed Dec 10, 2024
1 parent 15e707b commit 47a40a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/toolchain/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ pub trait Installable {
fn https_proxy() -> Option<String> {
for proxy in ["https_proxy", "HTTPS_PROXY", "all_proxy", "ALL_PROXY"] {
if let Ok(proxy_addr) = std::env::var(proxy) {
debug!("Getting Proxy from env var: {}={}", proxy, proxy_addr);
info!("Get Proxy from env var: {}={}", proxy, proxy_addr);
return Some(proxy_addr);
}
}
Expand Down

0 comments on commit 47a40a0

Please sign in to comment.