dazinator / AspNetSolutionUpgradeTool

A utility that can be used to upgrade an ASP.NET 5 RC1 or RC2 based solution to ASP.NET Core 1.0.0 RTM.
MIT License
5 stars 2 forks source link

Change to LoggingLevel Debug in appsettings.json files #21

Open dazinator opened 8 years ago

dazinator commented 8 years ago

The “Verbose” logging level no longer exists, instead, change it to Debug or one of the other values

Should check for this in any appSettings.json files. and change it to Debug.

"Logging": {
  "IncludeScopes": false,
  "LogLevel": {
    "Default": "Debug",
    "System": "Information",
    "Microsoft": "Information"
  }
}