Skip to content

Instantly share code, notes, and snippets.

@Magnus167
Forked from nguyendv/multi-handlers-logger.py
Created December 15, 2022 17:48
Show Gist options
  • Save Magnus167/2d050cf072c781a196d956c27926aa83 to your computer and use it in GitHub Desktop.
Save Magnus167/2d050cf072c781a196d956c27926aa83 to your computer and use it in GitHub Desktop.
Python logger with multiple handlers (stream, file, etc.), so you can write log to multiple targets at once
import logging
from logging.handlers import RotatingFileHandler
def setup_logger():
MAX_BYTES = 10000000 # Maximum size for a log file
BACKUP_COUNT = 9 # Maximum number of old log files
# The name should be unique, so you can get in in other places
# by calling `logger = logging.getLogger('com.dvnguyen.logger.example')
logger = logging.getLogger('com.dvnguyen.logger.example')
logger.setLevel(logging.INFO) # the level should be the lowest level set in handlers
log_format = logging.Formatter('[%(levelname)s] %(asctime)s - %(message)s')
stream_handler = logging.StreamHandler()
stream_handler.setFormatter(log_format)
stream_handler.setLevel(logging.INFO)
logger.addHandler(stream_handler)
info_handler = RotatingFileHandler('info.log', maxBytes=MAX_BYTES, backupCount=BACKUP_COUNT)
info_handler.setFormatter(log_format)
info_handler.setLevel(logging.INFO)
logger.addHandler(info_handler)
error_handler = RotatingFileHandler('error.log', maxBytes=MAX_BYTES, backupCount=BACKUP_COUNT)
error_handler.setFormatter(log_format)
error_handler.setLevel(logging.ERROR)
logger.addHandler(error_handler)
if __name__ == '__main__':
setup_logger()
for i in range(0, 1000):
logger.info('This is a message {}'.format(i))
if i % 5 == 0:
logger.error('THis is a error {}'.format(i))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment