feat: jieba日志调整为warning级别

This commit is contained in:
Relakkes 2024-08-09 18:12:15 +08:00
parent a599916d31
commit ec47c230a9
1 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,6 @@
import asyncio
import json
import logging
from collections import Counter
import aiofiles
@ -14,6 +15,7 @@ plot_lock = asyncio.Lock()
class AsyncWordCloudGenerator:
def __init__(self):
logging.getLogger('jieba').setLevel(logging.WARNING)
self.stop_words_file = config.STOP_WORDS_FILE
self.lock = asyncio.Lock()
self.stop_words = self.load_stop_words()