Skip to content

Commit

Permalink
WIP: debug log, will revert
Browse files Browse the repository at this point in the history
  • Loading branch information
astuyve committed Sep 26, 2024
1 parent fb87322 commit 1abe98b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions dogstatsd/src/datadog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ pub enum ShipError {
fn build_http_client(https_proxy: Option<String>) -> Result<reqwest::Client, reqwest::Error> {
let client = reqwest::Client::builder();
if let Some(proxy_uri) = https_proxy {
println!("ASTUYVE PROXY URI: {:?}", proxy_uri);
let proxy = reqwest::Proxy::https(proxy_uri)?;
client.proxy(proxy).build()
} else {
Expand Down

0 comments on commit 1abe98b

Please sign in to comment.