We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 644c683 commit ffc80d2Copy full SHA for ffc80d2
crates/yaak-http/src/manager.rs
@@ -36,7 +36,6 @@ impl HttpConnectionManager {
36
connections.retain(|_, (_, last_used)| last_used.elapsed() <= self.ttl);
37
38
if let Some((cached, last_used)) = connections.get_mut(&id) {
39
- info!("Re-using HTTP client {id}");
40
*last_used = Instant::now();
41
return Ok(CachedClient {
42
client: cached.client.clone(),
crates/yaak-tls/src/lib.rs
@@ -273,6 +273,5 @@ pub fn find_client_certificate(
273
});
274
}
275
276
- debug!("No matching client certificate found for {}", url_string);
277
None
278
0 commit comments