We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00693b0 commit 8e33ea2Copy full SHA for 8e33ea2
1 file changed
crates/matrix-sdk/src/http_client/native.rs
@@ -191,13 +191,6 @@ impl HttpSettings {
191
http_client = http_client.danger_accept_invalid_certs(true)
192
}
193
194
- if !self.additional_root_certificates.is_empty() {
195
- info!(
196
- "Adding {} additional root certificates to the HTTP client",
197
- self.additional_root_certificates.len()
198
- );
199
- }
200
-
201
if self.disable_built_in_root_certificates {
202
info!("Built-in root certificates disabled in the HTTP client.");
203
http_client = http_client.tls_certs_only(self.additional_root_certificates.clone());
0 commit comments