Custom Logger - Python
This simple class will enable a custom logger for your Python 3 application.
Log rotation is enabled and use the Config.py code snippet as a configuration management class.
//initialize
logger = Logger()
//info
logger.info("info")
//debug
logger.debug("debug")
//error
logger.error("error")
Please register or sign in to comment