AspNetCore.Docs/aspnetcore/includes/dbg-route.md

16 lines
362 B
Markdown

## 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"
}
}
}
```