refactor(jupyter): change log level

This commit is contained in:
orenzhang 2025-03-04 11:58:32 +08:00
parent 96e0c4d7b8
commit 613d278afc
No known key found for this signature in database
GPG Key ID: 73D45F78147E506C

View File

@ -9,7 +9,10 @@ import websockets
from pydantic import BaseModel
from websockets import ClientConnection
from open_webui.env import SRC_LOG_LEVELS
logger = logging.getLogger(__name__)
logger.setLevel(SRC_LOG_LEVELS["MAIN"])
class ResultModel(BaseModel):