fix(host): pin EF/AspNetCore logs to Warning in appsettings.Development

This commit is contained in:
Joseph Doherty
2026-06-07 11:19:26 -04:00
parent 5aba418074
commit 2676fc17b5
@@ -3,7 +3,9 @@
"MinimumLevel": { "MinimumLevel": {
"Default": "Debug", "Default": "Debug",
"Override": { "Override": {
"Akka": "Information" "Akka": "Information",
"Microsoft.EntityFrameworkCore": "Warning",
"Microsoft.AspNetCore": "Warning"
} }
} }
}, },