Skip to content

Commit a2175da

Browse files
Change log level from Information to Debug for loading persisted root certificate (#1736)
1 parent 177c893 commit a2175da

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎DevProxy.Proxy.Kestrel/Internal/CertificateAuthority.cs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ private X509Certificate2 LoadOrCreateRoot()
117117
var existing = TryLoadRoot(_rootPfxPath);
118118
if (existing is not null)
119119
{
120-
_logger.LogInformation("Loaded persisted root certificate from {Path}", _rootPfxPath);
120+
_logger.LogDebug("Loaded persisted root certificate from {Path}", _rootPfxPath);
121121
return existing;
122122
}
123123

0 commit comments

Comments
 (0)