DramaticLogger is a powerful logging tool built on top of Loguru, designed to provide enhanced and visually appealing log messages for your Python applications.
- Custom log levels with unique icons and colors
- Multiple handlers for different logging outputs (stderr, file)
- Easy integration with existing projects
You can install DramaticLogger directly from GitHub using pip:
pip install git+https://github.com/Lexa-B/DramaticLogger.gitTo use DramaticLogger in your project, simply import it and configure it as needed.
from dramatic_logger import DramaticLogger
logger = DramaticLogger()
logger.info("Dramatic log message")