Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion acmeclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,13 @@ func (iss *ACMEIssuer) newBasicACMEClient() (*acmez.Client, error) {
Directory: caURL,
UserAgent: buildUAString(),
HTTPClient: iss.httpClient,
Logger: slog.New(zapslog.NewHandler(iss.Logger.Named("acme_client").Core())),
Logger: slog.New(zapslog.NewHandler(
iss.Logger.Core(),
zapslog.WithName(iss.Logger.Name()+".acme_client"),
// the default enables traces at ERROR level, this disables
// them by setting it to a level higher than any other level
zapslog.AddStacktraceAt(slog.Level(127)),
)),
},
}, nil
}
Expand Down