Skip to content

Commit

Permalink
Merge pull request #148 from nabinkhadka/master
Browse files Browse the repository at this point in the history
Changed log level of doc candidates from .info to .debug. #141
  • Loading branch information
buriy authored May 24, 2020
2 parents 1e3b850 + 531ecc7 commit bb81dc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion readability/readability.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ def select_best_candidate(self, candidates):
)
for candidate in sorted_candidates[:5]:
elem = candidate["elem"]
log.info("Top 5 : %6.3f %s" % (candidate["content_score"], describe(elem)))
log.debug("Top 5 : %6.3f %s" % (candidate["content_score"], describe(elem)))

best_candidate = sorted_candidates[0]
return best_candidate
Expand Down

0 comments on commit bb81dc2

Please sign in to comment.