Improved logging for production

This commit is contained in:
Mia Rose Winter 2024-02-07 12:04:31 +01:00
parent f889fac9d2
commit eded7f08d5
Signed by: miawinter
GPG key ID: 4B6F6A83178F595E
2 changed files with 16 additions and 14 deletions

View file

@ -1,8 +1,9 @@
{ {
"Logging": { "Logging": {
"LogLevel": { "LogLevel": {
"Default": "Information", "Default": "Information",
"Microsoft.AspNetCore": "Warning" "Microsoft.AspNetCore": "Warning",
} "Microsoft.EntityFrameworkCore": "Information"
} }
}
} }

View file

@ -1,9 +1,10 @@
{ {
"Logging": { "Logging": {
"LogLevel": { "LogLevel": {
"Default": "Information", "Default": "Information",
"Microsoft.AspNetCore": "Warning" "Microsoft.AspNetCore": "Warning",
} "Microsoft.EntityFrameworkCore": "Warning"
}, }
"AllowedHosts": "*" },
"AllowedHosts": "*"
} }