please replace log.info() with log.debug() in Document.select_best_candidates()
yevgenpapernyk opened this issue · 1 comments
yevgenpapernyk commented
I guess it should be log.debug() - that would make more sense for me.
see the following peace of code:
for candidate in sorted_candidates[:5]:
elem = candidate['elem']
# log.debug() instead of log.info()
log.info("Top 5 : %6.3f %s" % (
candidate['content_score'],
describe(elem)))
buriy commented
Fixed