Skip to content
This repository has been archived by the owner on Dec 18, 2018. It is now read-only.

Commit

Permalink
Use 'Microsoft.AspNetCore.Server.Kestrel' instead of assembly FullName
Browse files Browse the repository at this point in the history
  • Loading branch information
khellang committed Apr 29, 2016
1 parent 0ed14a0 commit f769d01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Microsoft.AspNetCore.Server.Kestrel/KestrelServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public KestrelServer(IOptions<KestrelServerOptions> options, IApplicationLifetim

Options = options.Value ?? new KestrelServerOptions();
_applicationLifetime = applicationLifetime;
_logger = loggerFactory.CreateLogger(typeof(KestrelServer).GetTypeInfo().Assembly.FullName);
_logger = loggerFactory.CreateLogger("Microsoft.AspNetCore.Server.Kestrel");
Features = new FeatureCollection();
var componentFactory = new HttpComponentFactory(Options);
Features.Set<IHttpComponentFactory>(componentFactory);
Expand Down

0 comments on commit f769d01

Please sign in to comment.