Add RouteDebuggingLogger to your AspNetCore app and behold in relieve as it explains to your Logger what routes AspNetCore.Mvc has identified. ``` public void Configure(IApplicationBuilder app, IHostingEnvironment env) { if (env.IsDevelopment()) { app .UseDeveloperExceptionPage() .UseMiddleware<RouteDebuggingLogger>(); } app .UseMvcWithDefaultRoute() .UseComponentAsService() .UseKitchenSink(); } ``` Example output: ``` info: As
[email protected] low health (30/100) — consider alternatives
Get this data programmatically — free, no authentication.
curl https://depscope.dev/api/check/nuget/AspNetCore.Mvc.Routes.DebuggingLoggerMiddlewareLast updated · 2018-11-04T00:27:49.08+00:00