20 lines
674 B
JSON
20 lines
674 B
JSON
{
|
|
"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": "*"
|
|
} |