You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 18, 2018. It is now read-only.
Kestrel server, at least on Windows, no longer logs the address where its base address. The experience is thus poorer than with WebListener. May also be a regression from earlier versions. This occurs with both recent Beta 5 and Beta 6 builds.
E.g. complete Kestrel output for startup, one request, and shutdown with the following in Startup.Configure():
C:\dd\projects\MVC6.JsonPatch.20150619\src\MVC6.JsonPatch.20150619> dnx . kestrel
Started
info : [Microsoft.AspNet.Routing.Template.TemplateRoute] Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
WebListener:
> dnx . web
info : [Microsoft.Net.Http.Server.WebListener] Start
info : [Microsoft.Net.Http.Server.WebListener] Listening on prefix: http://localhost:5000/
Started
info : [Microsoft.AspNet.Routing.Template.TemplateRoute] Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
The text was updated successfully, but these errors were encountered:
Confirmed bug remains with latest Beta 6 packages. Also repros with Mono.
Side note: Routing no longer logs information about matched routes. So Kestrel output is just Started while WebListener now shows
> dnx . web
info : [Microsoft.Net.Http.Server.WebListener] Start
info : [Microsoft.Net.Http.Server.WebListener] Listening on prefix: http://localhost:5000/
Started
info : [Microsoft.Net.Http.Server.WebListener] Dispose
info : [Microsoft.Net.Http.Server.WebListener] Stop listening on prefix: http://localhost:5000/
Kestrel server, at least on Windows, no longer logs the address where its base address. The experience is thus poorer than with WebListener. May also be a regression from earlier versions. This occurs with both recent Beta 5 and Beta 6 builds.
E.g. complete Kestrel output for startup, one request, and shutdown with the following in
Startup.Configure()
:Kestrel:
WebListener:
The text was updated successfully, but these errors were encountered: