aspnet / Announcements

Subscribe to this repo to be notified about major changes in ASP.NET Core and Entity Framework Core
Other
1.66k stars 80 forks source link

Kestrel Connection Adapter Logging Namespace Changes #317

Open halter73 opened 6 years ago

halter73 commented 6 years ago

The logging namespaces for Kestrel's HttpsConnectionAdapter and LoggingConnectionAdapter are changing in 2.2.0.

  1. The HttpsConnectionAdapter logging namespace is now Microsoft.AspNetCore.Server.Kestrel.Https.Internal.HttpsConnectionAdapter.
  2. The LoggingConnectionAdapter logging namespace is now Microsoft.AspNetCore.Server.Kestrel.Core.Adapter.Internal.LoggingConnectionAdapter.

Here's an example HttpsConnectionAdapter log prior to the change:

dbug: HttpsConnectionAdapter[2]
      Authentication of the HTTPS connection timed out.

And after:

dbug: Microsoft.AspNetCore.Server.Kestrel.Https.Internal.HttpsConnectionAdapter[2]
      Authentication of the HTTPS connection timed out.
halter73 commented 6 years ago

Please use aspnet/KestrelHttpServer#2941 for further discussions.