TRACE
debug 보다 세분화된 정보
ERROR
요청을 처리하는 중 문제가 발생한 오류 정보
INFO
진행상황 같은 일반 정보
DEBUG
디버깅하는데 유용한 세분화된 정보
WARN
오류는 아니지만 잠재적인 오류 원이이 될 수 있는 경고성 정보
import logging
logging.warning('watch out')
logging.info('I told you so')
logging.basicConfig(filename='example.log', encoding = 'utf-8', level=logging.DEBUG)
logging.debug('This message should go to the log file')
logging.info('So should this')
logging.warning('And this, too')
logging.error('And non-ASCII stuff, too, like Oresund and malmo')