Skip to content

Commit f4c10ec

Browse files
authored
Remove dot that is added to URL (#56075)
The dot is added to the URL: And, when clicked, navigates to a non-existing URL. As a side fix, `aspnet/https-trust-dev-cert.` should be added to `https://aka.ms/`.
1 parent 1ed83e9 commit f4c10ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Servers/Kestrel/Core/src/Internal/LoggerExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ internal static partial class LoggerExtensions
3838
[LoggerMessage(7, LogLevel.Error, "The certificate key file at '{CertificateKeyFilePath}' can not be found, contains malformed data or does not contain a PEM encoded key in PKCS8 format.", EventName = "MissingOrInvalidCertificateKeyFile")]
3939
public static partial void FailedToLoadCertificateKey(this ILogger<KestrelServer> logger, string certificateKeyFilePath);
4040

41-
[LoggerMessage(8, LogLevel.Warning, "The ASP.NET Core developer certificate is not trusted. For information about trusting the ASP.NET Core developer certificate, see https://aka.ms/aspnet/https-trust-dev-cert.", EventName = "DeveloperCertificateNotTrusted")]
41+
[LoggerMessage(8, LogLevel.Warning, "The ASP.NET Core developer certificate is not trusted. For information about trusting the ASP.NET Core developer certificate, see https://aka.ms/aspnet/https-trust-dev-cert", EventName = "DeveloperCertificateNotTrusted")]
4242
public static partial void DeveloperCertificateNotTrusted(this ILogger<KestrelServer> logger);
4343
}

0 commit comments

Comments
 (0)