mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-25 01:25:04 +08:00
14 lines
365 B
Python
14 lines
365 B
Python
import logging
|
|
|
|
from nonebot.log import LoguruHandler, logger
|
|
|
|
aiocache_logger = logging.getLogger("aiocache.serializers.serializers")
|
|
aiocache_logger.setLevel(logging.DEBUG)
|
|
aiocache_logger.handlers.clear()
|
|
aiocache_logger.addHandler(LoguruHandler())
|
|
|
|
from .bot import Bot
|
|
from .event import *
|
|
from .event import Event
|
|
from .message import Message, MessageSegment
|