Skip to content

Commit ffc80d2

Browse files
committed
Remove noisy logs
1 parent 644c683 commit ffc80d2

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

crates/yaak-http/src/manager.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ impl HttpConnectionManager {
3636
connections.retain(|_, (_, last_used)| last_used.elapsed() <= self.ttl);
3737

3838
if let Some((cached, last_used)) = connections.get_mut(&id) {
39-
info!("Re-using HTTP client {id}");
4039
*last_used = Instant::now();
4140
return Ok(CachedClient {
4241
client: cached.client.clone(),

crates/yaak-tls/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,5 @@ pub fn find_client_certificate(
273273
});
274274
}
275275

276-
debug!("No matching client certificate found for {}", url_string);
277276
None
278277
}

0 commit comments

Comments
 (0)