From c470016116227287a0817dcf4758556d726a3a00 Mon Sep 17 00:00:00 2001 From: Sudipto Chandra Date: Sun, 11 Jul 2021 10:46:21 +0600 Subject: [PATCH] Remove error log in search --- lncrawl/core/novel_search.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lncrawl/core/novel_search.py b/lncrawl/core/novel_search.py index afa7be35c..295b2baf5 100644 --- a/lncrawl/core/novel_search.py +++ b/lncrawl/core/novel_search.py @@ -27,8 +27,7 @@ def get_search_result(app, link, bar): return results except Exception: import traceback - traceback.print_exc() - #logger.debug(traceback.format_exc()) + logger.debug(traceback.format_exc()) finally: app.progress += 1 bar.next()