impulsare-logger

A simple python logger that creates two handlers with a nice formatting : Stream and File


Keywords
logger, python
License
AGPL-3.0
Install
pip install impulsare-logger==1.0b3

Documentation

impulsare/logger

Overview

A logger that sends its logs to rotated files + directly to console (configurable).

Installation / Usage

To install use pip:

$ pip install --upgrade impulsare-logger

Configuration

To be able to use the logger you need to create a configuration file that contains the following parameters:

logger:
     # Where to store the logs. The file is generated by a parameter
     # Set on Class Init
    directory: /var/log
     # CRITICAL, ERROR, WARNING, INFO, DEBUG
    level: WARNING
    # Optional for files, see https://docs.python.org/3/library/logging.html#logging.Formatter
    formatter: '%(asctime)s :: %(levelname)s :: %(message)s'
    # In MB, before rotating
    max_size: 10
    # How many files to keep
    rotate: 3
    # Where to log ?
    handlers:
        console: false
        file: true

Example

from impulsare_logger import Logger


logger = Logger('app', 'tests/static/config_valid.yml')
logger.log.warning('coucou')

Tests

$ pip install -r requirements.txt
$ pip install -r requirements-dev.txt
$ py.test --capture=sys --cov-report html --cov=impulsare_logger tests