Skip to content

wrapp/easylog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

easylog

Easy configuration for python logging. Configure a logger so that ERROR ends up on stderr and everything else on stdout.

Usage:

import logging
import easylog

logger = logging.getLogger()
easylog.configure_logger(logger)

logger.info(...)        # -> stdout
logger.error(...)       # -> stderr

About

Easy configuration for python logging

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages