Skip to content

Commit bb81dc2

Browse files
authored
Merge pull request #148 from nabinkhadka/master
Changed log level of doc candidates from .info to .debug. #141
2 parents 1e3b850 + 531ecc7 commit bb81dc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

readability/readability.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ def select_best_candidate(self, candidates):
327327
)
328328
for candidate in sorted_candidates[:5]:
329329
elem = candidate["elem"]
330-
log.info("Top 5 : %6.3f %s" % (candidate["content_score"], describe(elem)))
330+
log.debug("Top 5 : %6.3f %s" % (candidate["content_score"], describe(elem)))
331331

332332
best_candidate = sorted_candidates[0]
333333
return best_candidate

0 commit comments

Comments
 (0)