Back to Aspnetcore

Dbg Route

aspnetcore/includes/dbg-route.md

latest363 B
Original Source

Debug diagnostics

For detailed routing diagnostic output, set Logging:LogLevel:Microsoft to Debug. In the Development environment, set the log level in appsettings.Development.json:

json
{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft": "Debug",
      "Microsoft.Hosting.Lifetime": "Information"
    }
  }
}