Simple Python Logger package to easily manage custom loggers in Python projects.
Because the package is hosted on PyPi, the installation process is quite simple:
Notice that the package name has a 3 in place of an E, this is due to the availability of names in PyPi.
pip install simplepylogg3r
pip install simplepylogg3r -U
Currently, the package supports 3 different loggers:
- Console Logger
- File Logger
IMPORTANT NOTE: Every logger must be configured before using it, this is done by calling the configure
method of the logger. Once you have configured a logger, the configuration gets saved and everytime you use the logger again, it uses this initial configuration.
All logger configuration methods are static, so you can call them directly from the class. They also have all necessary parameters with default values, allowing you to use them without any configuration or customizing whatever you want.
from splogger.loggers import ConsoleLogger
ConsoleLogger.configure('logger_name') # Logger configuration
ConsoleLogger.debug('Debug Message')
ConsoleLogger.info('Info Message')
ConsoleLogger.warning('Warning Message')
ConsoleLogger.error('Error Message')
ConsoleLogger.critical('Critical Message')
from splogger.loggers import FileLogger
FileLogger.configure('logger_name', filename='example.log') # Logger configuration
FileLogger.debug('Debug Message')
FileLogger.info('Info Message')
FileLogger.warning('Warning Message')
FileLogger.error('Error Message')
FileLogger.critical('Critical Message')
- Add README docs.
- Generate wiki docs.
- Add Rotating File Logger (time).
- Add Rotating File Logger (size).
- Implement unit tests.
- Run unit tests on CI.
Apache License 2.0