1 files changed, 14 insertions, 3 deletions
diff --git a/extra/admin-api/Spacebar.UApi/appsettings.Development.json b/extra/admin-api/Spacebar.UApi/appsettings.Development.json
index 524b10da..b08c097f 100644
--- a/extra/admin-api/Spacebar.UApi/appsettings.Development.json
+++ b/extra/admin-api/Spacebar.UApi/appsettings.Development.json
@@ -1,12 +1,23 @@
{
"Logging": {
+// "LogLevel": {
+// "Default": "Information",
+// "Microsoft.AspNetCore": "Warning"
+// }
"LogLevel": {
"Default": "Information",
- "Microsoft.AspNetCore": "Warning"
+ "Microsoft.AspNetCore": "Trace",
+ "Microsoft.AspNetCore.Server.Kestrel.Connections": "Information",
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "Information",
+ "Microsoft.AspNetCore.Mvc": "Warning",
+ "Microsoft.AspNetCore.HostFiltering": "Warning",
+ "Microsoft.AspNetCore.Cors": "Warning",
+ // "Microsoft.EntityFrameworkCore": "Warning"
+ "Microsoft.EntityFrameworkCore.Database.Command": "Information"
}
},
"ConnectionStrings": {
- "Spacebar": "Host=127.0.0.1; Username=postgres; Database=spacebar; Port=5433; Include Error Detail=true; Maximum Pool Size=1000; Command Timeout=6000; Timeout=600;"
+ "Spacebar": "Host=127.0.0.1; Username=postgres; Database=spacebar; Port=5432; Include Error Detail=true; Maximum Pool Size=1000; Command Timeout=6000; Timeout=600;"
},
"Spacebar": {
"Authentication": {
@@ -14,7 +25,7 @@
"PrivateKeyPath": "../../../jwt.key"
},
"UApi":{
- "FallbackApiEndpoint": "http://localhost:3113"
+ "FallbackApiEndpoint": "http://localhost:3001"
}
}
}
|