-
Notifications
You must be signed in to change notification settings - Fork 161
Missing trace\debug logs in ASP.NET Core 3?
Julian Verdurmen edited this page Oct 14, 2019
·
5 revisions
Missing the trace en debug logs in ASP.NET Core #?
Check your appsettings.json
The following is advised:
{
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Trace",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*"
}
appsettings.json. Ex. appsettings.development.json
For general docs, check https://github.com/NLog/NLog/wiki