Skip to content

Instantly share code, notes, and snippets.

@nguyendv
Last active January 4, 2024 16:38
Show Gist options
  • Save nguyendv/ccf4d9e1d0b4679da938872378c46226 to your computer and use it in GitHub Desktop.
Save nguyendv/ccf4d9e1d0b4679da938872378c46226 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))
@JavenZ
Copy link

JavenZ commented Jan 4, 2024

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment