YOLO / yolo /utils /logger.py
henry000's picture
πŸ› [Fix] display emoji bugs, change it to shortcode
802cb12
raw
history blame
325 Bytes
import logging
from rich.console import Console
from rich.logging import RichHandler
logger = logging.getLogger(__name__)
logger.setLevel(logging.DEBUG)
logger.propagate = False
if not logger.hasHandlers():
logger.addHandler(RichHandler(console=Console(), show_level=True, show_path=True, show_time=True, markup=True))