Skip to content
This repository was archived by the owner on Nov 2, 2019. It is now read-only.

David-Lor/Python-Custom-Logging

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 

Repository files navigation

Python-Custom-Logging

My custom Logging addon for Python native logging library, using SQLite and my custom SQLite-DBManager

Example of use

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!")

About

My custom Logging addon for Python native logging library, using SQLite

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages