yourlog is a simple python logging library
import yourlog
logger = yourlog.Logger()
logger.add_listener("lastest.log")
logger.add_listener(print)
logger.debug("Debug there")
logger.info("Info there")
logger.warn("Warn there")
logger.error("Error there")
logger.fatal("Fatal there")
logger.custom("Custom type", "Custom there")pip install yourlog- Clone the repo
git clone https://github.com/Kiber2009/yourlog.git cd yourlog - Make sure you have the latest version of PyPA’s build installed
python -m pip install --upgrade build
- Build the lib
python -m build