-
-
Notifications
You must be signed in to change notification settings - Fork 158
Diagnosing issues
Nate McMaster edited this page May 26, 2020
·
2 revisions
Here are some tips for diagnosing issues with LettuceEncrypt.
Trace logging includes more details about what LettuceEncrypt is going. In a typical ASP.NET Core project using Microsoft's built-in logger, you can enable trace logging with 'appsettings.json' like this:
{
"Logging": {
"LogLevel": {
"LettuceEncrypt": "Trace"
}
}
}
Then, look in your log output for statements coming from "LettuceEncrypt.*" loggers. Example:
info: LettuceEncrypt.Internal.AcmeCertificateLoader[0]
Using existing account for mailto:[email protected]
When sharing this in a GitHub issue, consider attaching the log as a .txt file or using https://gist.github.com as logs can be long and hard to view in an issue thread.