Skip to content
View chachan's full-sized avatar

Organizations

@pyve @djangove @pythoncr

Block or report chachan

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. logger.py logger.py
    1
    # Logger specific - good for production
    2
    import logging
    3
    
                  
    4
    def config_logger(name='', level=logging.INFO, _format='%(message)s', handler=logging.StreamHandler, propagate=True):
    5
        ''' configures a logger '''