Python 제3자 로그 프레임 워 크 loguru 사용

중국어 난 장 판 문제 해결
프로젝트 주소 github:https://github.com/Delgan/loguru
문서:https://loguru.readthedocs.io/en/stable/index.html
설치 하 다.

pip install loguru
1.출력 로그

from loguru import logger
logger.debug("    debug  ")
터미널 실행 후 색상 이 있 는 로그 가 나타 나 멋 있 습 니 다.

2.파일 로 출력

from loguru import logger

logger.add("file_{time}.log")

logger.debug("    debug  ")
logger.info("    info  ")
디 렉 터 리 아래 에 로그 파일 이 하나 더 있 습 니 다:file2019-03-14_19-53-25_661314.log

3.로그 규칙
로그 형식,필터,로그 단계 설정

from loguru import logger

logger.add("file.log", format="{time} {level} {message}", filter="", level="INFO")

logger.debug("    debug  ")
logger.info("    info  ")
출력
2019-03-14T 20:01:25:392454+0800 INFO
4.로그 파일
파일 관리 방식

logger.add("file_1.log", rotation="500 MB")    #               
logger.add("file_2.log", rotation="12:00")     #   12      
logger.add("file_3.log", rotation="1 week")    #              

logger.add("file_X.log", retention="10 days")  #         

logger.add("file_Y.log", compression="zip")    #   zip  
5.기타 매개 변수

logger.add("somefile.log", enqueue=True)  #     

logger.add("somefile.log", serialize=True)  #     json
6.시간 포맷

logger.add("file.log", format="{time:YYYY-MM-DD at HH:mm:ss} | {level} | {message}")
배합 notifiers 모듈
github: https://github.com/notifiers/notifiers
문서:https://notifiers.readthedocs.io/en/latest/
7.프로젝트 에서 여러 파일 프로세서 대상 을 만 들 고 중국어 코드 문 제 를 해결 합 니 다.

# coding=utf-8
import os
import sys
from loguru import logger

BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))

log_file_path = os.path.join(BASE_DIR, 'Log/my.log')
err_log_file_path = os.path.join(BASE_DIR, 'Log/err.log')

logger.add(sys.stderr, format="{time} {level} {message}", filter="my_module", level="INFO")
# logger.add(s)
logger.add(log_file_path, rotation="500 MB", encoding='utf-8')  # Automatically rotate too big file
logger.add(err_log_file_path, rotation="500 MB", encoding='utf-8',
           level='ERROR')  # Automatically rotate too big file
logger.debug("That's it, beautiful and simple logging!")
logger.debug("       ")
logger.error("    ")


이상 은 Python 제3자 로그 프레임 워 크 loguru 에서 사용 하 는 상세 한 내용 입 니 다.Python 로그 프레임 워 크 loguru 에 관 한 자 료 는 다른 관련 글 을 주목 하 십시오!

좋은 웹페이지 즐겨찾기