diff --git a/DevProxy.Proxy.Kestrel/Internal/CertificateAuthority.cs b/DevProxy.Proxy.Kestrel/Internal/CertificateAuthority.cs index c77391af..46d39466 100644 --- a/DevProxy.Proxy.Kestrel/Internal/CertificateAuthority.cs +++ b/DevProxy.Proxy.Kestrel/Internal/CertificateAuthority.cs @@ -117,7 +117,7 @@ private X509Certificate2 LoadOrCreateRoot() var existing = TryLoadRoot(_rootPfxPath); if (existing is not null) { - _logger.LogInformation("Loaded persisted root certificate from {Path}", _rootPfxPath); + _logger.LogDebug("Loaded persisted root certificate from {Path}", _rootPfxPath); return existing; }