From e7912d7dbf0db4feaad8c8a121b62c538a5a3ab8 Mon Sep 17 00:00:00 2001 From: Nikolay Komarevskiy Date: Fri, 16 Aug 2024 14:24:50 +0300 Subject: [PATCH] fix: remove print --- ic-agent/src/agent/http_transport/hyper_transport.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/ic-agent/src/agent/http_transport/hyper_transport.rs b/ic-agent/src/agent/http_transport/hyper_transport.rs index dbb57b86..bd769ce2 100644 --- a/ic-agent/src/agent/http_transport/hyper_transport.rs +++ b/ic-agent/src/agent/http_transport/hyper_transport.rs @@ -189,7 +189,6 @@ where let create_request_with_generated_url = || -> Result, AgentError> { let url = self.route_provider.route()?.join(endpoint)?; - println!("{url}"); let http_request = Request::builder() .method(&method) .uri(url.as_str())