Skip to content

Commit

Permalink
fix: add default SEQ configuration in appsettings files
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolae-lupei committed Mar 11, 2020
1 parent dd1898b commit 97a9142
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/GR.WebHosts/GR.Cms/appsettings.Development.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@
"Default": "Error",
"System": "Information",
"Microsoft": "Information"
},
"Seq": {
"ServerUrl": "http://localhost:5341",
"ApiKey": "1234567890",
"MinimumLevel": "Trace",
"LevelOverride": {
"Microsoft": "Warning"
}
}
},
"HealthCheck": {
Expand Down
8 changes: 8 additions & 0 deletions src/GR.WebHosts/GR.Cms/appsettings.Stage.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@
"Default": "Error",
"System": "Information",
"Microsoft": "Information"
},
"Seq": {
"ServerUrl": "http://localhost:5341",
"ApiKey": "1234567890",
"MinimumLevel": "Trace",
"LevelOverride": {
"Microsoft": "Warning"
}
}
},
"HealthCheck": {
Expand Down
8 changes: 8 additions & 0 deletions src/GR.WebHosts/GR.Cms/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@
"Default": "Error",
"System": "Information",
"Microsoft": "Information"
},
"Seq": {
"ServerUrl": "http://localhost:5341",
"ApiKey": "1234567890",
"MinimumLevel": "Trace",
"LevelOverride": {
"Microsoft": "Warning"
}
}
},
"HealthCheck": {
Expand Down

0 comments on commit 97a9142

Please sign in to comment.