My custom Logging addon for Python native logging library, using SQLite and my custom SQLite-DBManager
from Logging import logging, create_logger
mylog = create_logger(
name="MyFirstCustomLog",
db_name="Databases/Logs.sqlite",
db_level=logging.DEBUG,
print_level=logging.DEBUG
)
mylog.debug("This is a common debug msg")
mylog.info("This is just info")
mylog.error("This is an ERROR!")