From 8180ea99509c2eaa183fc44a684279962337b266 Mon Sep 17 00:00:00 2001 From: waldekmastykarz Date: Mon, 29 Jun 2026 19:19:22 +0200 Subject: [PATCH] Change log level from Information to Debug for loading persisted root certificate --- DevProxy.Proxy.Kestrel/Internal/CertificateAuthority.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }