Modify launchSettings and appsettings

This commit is contained in:
Denis-Cosmin Nutiu 2020-08-01 16:40:46 +03:00
parent 0b2ba8a916
commit 5b692a5d74
2 changed files with 9 additions and 3 deletions

View file

@ -1,5 +1,11 @@
{
"profiles": {
"NucuCar.Sensors": {
"commandName": "Project",
"environmentVariables": {
"DOTNET_ENVIRONMENT": "Production"
}
},
"NucuCar.Sensors.Development": {
"commandName": "Project",
"environmentVariables": {

View file

@ -2,9 +2,9 @@
"Logging": {
"LogLevel": {
"Default": "Debug",
"System": "Information",
"Grpc": "Information",
"Microsoft": "Information"
"System": "Debug",
"Grpc": "Debug",
"Microsoft": "Debug"
}
}
}