Skip to content

Commit

Permalink
Remove println in reqwest_transport.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
DSharifi committed Jul 23, 2024
1 parent 6940df0 commit b7a3e07
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion ic-agent/src/agent/http_transport/reqwest_transport.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ impl ReqwestTransport {
) -> Result<(StatusCode, HeaderMap, Vec<u8>), AgentError> {
let create_request_with_generated_url = || -> Result<Request, AgentError> {
let url = self.route_provider.route()?.join(endpoint)?;
println!("url = {}", url);
let mut http_request = Request::new(method.clone(), url);
http_request
.headers_mut()
Expand Down

0 comments on commit b7a3e07

Please sign in to comment.