Created by: K33k0
What is this Python project?
The simplest way to get logger setup.
What's the difference between this Python project and similar ones?
Logzero can be as simple as:
from logzero import logger
logger.info("we're good to go")
Writing to a file is also very simple
import logzero
from logzero import logger
# Setup rotating logfile with 3 rotations, each with a maximum filesize of 1MB:
logzero.logfile("/tmp/rotating-logfile.log", maxBytes=1e6, backupCount=3)
# Log messages
logger.info("This log message goes to the console and the logfile")
--
Anyone who agrees with this pull request could vote for it by adding a