mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-07-04 20:11:48 +02:00
Remove noisy logs
This commit is contained in:
@@ -36,7 +36,6 @@ impl HttpConnectionManager {
|
|||||||
connections.retain(|_, (_, last_used)| last_used.elapsed() <= self.ttl);
|
connections.retain(|_, (_, last_used)| last_used.elapsed() <= self.ttl);
|
||||||
|
|
||||||
if let Some((cached, last_used)) = connections.get_mut(&id) {
|
if let Some((cached, last_used)) = connections.get_mut(&id) {
|
||||||
info!("Re-using HTTP client {id}");
|
|
||||||
*last_used = Instant::now();
|
*last_used = Instant::now();
|
||||||
return Ok(CachedClient {
|
return Ok(CachedClient {
|
||||||
client: cached.client.clone(),
|
client: cached.client.clone(),
|
||||||
|
|||||||
@@ -273,6 +273,5 @@ pub fn find_client_certificate(
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
debug!("No matching client certificate found for {}", url_string);
|
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user