2021-02-16 06:06:48 +08:00
---
2021-05-09 04:12:34 +08:00
no-loc: [Home, Privacy, Kestrel, appsettings.json, "ASP.NET Core Identity", cookie, Cookie, Blazor, "Blazor Server", "Blazor WebAssembly", "Identity", "Let's Encrypt", Razor, SignalR]
2021-02-16 06:06:48 +08:00
---
2020-03-27 06:49:59 +08:00
## Debug diagnostics
2020-06-30 04:27:54 +08:00
For detailed routing diagnostic output, set `Logging:LogLevel:Microsoft` to `Debug` . In the development environment, set the log level in *appsettings.Development.json* :
2020-03-27 06:49:59 +08:00
2020-06-30 04:27:54 +08:00
```json
2020-03-27 06:49:59 +08:00
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Debug",
"Microsoft.Hosting.Lifetime": "Information"
}
}
2020-06-30 04:27:54 +08:00
}
```