8 lines
131 B
Python
8 lines
131 B
Python
import logging
|
|
from ci import app
|
|
|
|
# 日志记录
|
|
logging.basicConfig(level=logging.ERROR)
|
|
logging.info("Bot 已启动")
|
|
app.run()
|