debug: remove logging for '__get_suggest'

This commit is contained in:
jar3b 2020-02-19 00:45:22 +03:00
parent 67cfd34a66
commit d03aa0a78c

View File

@ -65,11 +65,6 @@ class SphinxSearch:
word_len = len(word) word_len = len(word)
trigrammed_word = '"{}"/1'.format(trigram(word)) trigrammed_word = '"{}"/1'.format(trigram(word))
logging.info(word)
logging.info(rating_limit)
logging.info(count)
logging.info(trigrammed_word)
self.__configure(SphinxConfig.index_sugg, word_len) self.__configure(SphinxConfig.index_sugg, word_len)
result = self.client_sugg.Query(trigrammed_word, SphinxConfig.index_sugg) result = self.client_sugg.Query(trigrammed_word, SphinxConfig.index_sugg)