Ombi-app / Ombi.Docs

10 stars 18 forks source link

Debug logging instructions incomplete #219

Closed sephrat closed 1 year ago

sephrat commented 1 year ago

Describe the error
To enable full debug logging, you also need to set Serilog.MinimumLevel to Debug in the appsettings.json This is used by our custom log method. (https://github.com/Ombi-app/Ombi/pull/4566)

Location
https://docs.ombi.app/info/faq/#how-do-i-enable-debug-logging

Suggested correction

"Logging": {
    "IncludeScopes": false,
    "LogLevel": {
      "Default": "Debug",
      "System": "Debug",
      "Microsoft": "Warning",
      "Hangfire": "None",
      "System.Net.Http.HttpClient.health-checks": "Warning",
      "HealthChecks": "Warning"
    }
  },
  "Serilog": {
    "MinimumLevel": "Debug"
  },
Berserkir-Wolf commented 1 year ago

Closed in #220