diff --git a/src/Microsoft.AspNetCore.Server.Kestrel/KestrelServer.cs b/src/Microsoft.AspNetCore.Server.Kestrel/KestrelServer.cs index 1a2b97f68d..a1b1b01947 100644 --- a/src/Microsoft.AspNetCore.Server.Kestrel/KestrelServer.cs +++ b/src/Microsoft.AspNetCore.Server.Kestrel/KestrelServer.cs @@ -41,7 +41,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel Options = options.Value ?? new KestrelServerOptions(); _applicationLifetime = applicationLifetime; - _logger = loggerFactory.CreateLogger(typeof(KestrelServer).GetTypeInfo().Assembly.FullName); + _logger = loggerFactory.CreateLogger(typeof(KestrelServer).GetTypeInfo().Namespace); Features = new FeatureCollection(); var componentFactory = new HttpComponentFactory(Options); Features.Set(componentFactory);