Source code for jdxi_editor.log.emoji
"""
Emoji logger formatter for Python's logging module.
This formatter defines emojis to log messages based on their severity level.
"""
import logging
[docs]
LEVEL_EMOJIS = {
logging.DEBUG: "đ",
logging.INFO: "âšī¸",
logging.WARNING: "â ī¸",
logging.ERROR: "â",
logging.CRITICAL: "đĨ",
}