LibTLS: Put debug spam about loaded certificates behind TLS_DEBUG
This commit is contained in:
parent
a0874dc870
commit
fce4739d3e
Notes:
sideshowbarker
2024-07-17 20:22:04 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/LadybirdBrowser/ladybird/commit/fce4739d3e
1 changed files with 1 additions and 1 deletions
|
@ -622,7 +622,7 @@ ErrorOr<Vector<Certificate>> DefaultRootCACertificates::parse_pem_root_certifica
|
|||
}
|
||||
}
|
||||
|
||||
dbgln("Loaded {} of {} ({:.2}%) provided CA Certificates", certificates.size(), certs.size(), (certificates.size() * 100.0) / certs.size());
|
||||
dbgln_if(TLS_DEBUG, "Loaded {} of {} ({:.2}%) provided CA Certificates", certificates.size(), certs.size(), (certificates.size() * 100.0) / certs.size());
|
||||
|
||||
return certificates;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue