carson-logging

easier to use original python provides a module of logging


Keywords
logging
License
Apache-2.0
Install
pip install carson-logging==0.1.0

Documentation

CLogging

1   Install

  • pip install carson-logging

2   import packages

from Carson.Class.Logging import CLogging

3   USAGE

3.1   Basic

log = CLogging("log_name", "temp_dir/xxx.log")
log.info('info msg')
log.debug('info msg')
log.warning('info msg')
log.error('info msg')
log.critical('info msg')

3.2   Advanced

my_define_format = logging.Formatter(u'%(asctime)s|%(levelname)s|%(name)s|%(message)s')
log = CLogging("log_name", "C:dir/xxx.log", logging.INFO, 'w', my_define_format, stream_handler_on=True, stream_level=logging.ERROR)

4   Issues