Increases log verbosity during development
All checks were successful
Build, Push and Run Container / build (push) Successful in 24s

Configures logging to show more detailed information during development.
Improves logging for debugging and troubleshooting authentication issues.
This commit is contained in:
2025-08-18 14:22:32 +02:00
parent ce5852cbe8
commit 1aa42c1cd6
2 changed files with 4 additions and 3 deletions

View File

@@ -1,8 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
"Default": "Trace",
"Microsoft.AspNetCore": "Warning",
"System.Net.Http.HttpClient": "Warning"
}
}
}