You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
787 B
25 lines
787 B
{
|
|
"Position": {
|
|
"Title": "Editor",
|
|
"Name": "Joe Smith"
|
|
},
|
|
"MyKey": "My appsettings.json Value",
|
|
"Logging": {
|
|
"LogLevel": { // All providers, LogLevel applies to all the enabled providers.
|
|
"Default": "Error", // Default logging, Error and higher.
|
|
"Microsoft": "Warning" // All Microsoft* categories, Warning and higher.
|
|
},
|
|
"Debug": { // Debug provider.
|
|
"LogLevel": {
|
|
"Default": "Information", // Overrides preceding LogLevel:Default setting.
|
|
"Microsoft.Hosting": "Trace" // Debug:Microsoft.Hosting category.
|
|
}
|
|
},
|
|
"EventSource": { // EventSource provider
|
|
"LogLevel": {
|
|
"Default": "Warning" // All categories of EventSource provider.
|
|
}
|
|
}
|
|
},
|
|
"AllowedHosts": "*"
|
|
} |