DocuBot / utils /logging.py
MaheshLEO4's picture
Initial commit for DocChat
b7e0e53
raw
history blame contribute delete
164 Bytes
from loguru import logger
logger.add(
"app.log",
rotation="10 MB",
retention="30 days",
format="{time:YYYY-MM-DD HH:mm:ss} | {level} | {message}"
)