mirror of
https://github.com/miniflux/v2.git
synced 2025-08-11 17:51:01 +00:00
refactor(readability): use String
explicitly in debug log instead of Any
This commit is contained in:
parent
410b43a787
commit
f02213a168
1 changed files with 2 additions and 2 deletions
|
@ -94,8 +94,8 @@ func ExtractContent(page io.Reader) (baseURL string, extractedContent string, er
|
||||||
|
|
||||||
slog.Debug("Readability parsing",
|
slog.Debug("Readability parsing",
|
||||||
slog.String("base_url", baseURL),
|
slog.String("base_url", baseURL),
|
||||||
slog.Any("candidates", candidates),
|
slog.String("candidates", candidates.String()),
|
||||||
slog.Any("topCandidate", topCandidate),
|
slog.String("topCandidate", topCandidate.String()),
|
||||||
)
|
)
|
||||||
|
|
||||||
extractedContent = getArticle(topCandidate, candidates)
|
extractedContent = getArticle(topCandidate, candidates)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue