python 로그 봉인 방법

저자:꿈 꾸 는 사람(작은 누나)
출처:https://www.cnblogs.com/chongyou/
최근 에 플랫폼 을 만 들 고 있 는데 동료 가 django 로 로그 모듈 을 봉 인 했 습 니 다.간단 한 것 같 습 니 다.로그 패 키 징 템 플 릿 을 따로 만 들 려 고 합 니 다.python 에 익숙 하지 않 은 저 에 게 패 키 징 부분 은 여러 블 로 거들 의 내용 을 참고 하여 자신의 로그 모듈 을 만 들 었 습 니 다.내용 은 다음 과 같 습 니 다.
포장 부분
logutil 2 의 py 파일 만 들 기

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Author: zhangjun
# @Date  : 2018/7/26 9:20
# @Desc  : Description
 
import logging
import logging.handlers
import os
import time
 
class logs(object):
    def __init__(self):
        self.logger = logging.getLogger("")
        #        
        LEVELS = {'NOSET': logging.NOTSET,
                  'DEBUG': logging.DEBUG,
                  'INFO': logging.INFO,
                  'WARNING': logging.WARNING,
                  'ERROR': logging.ERROR,
                  'CRITICAL': logging.CRITICAL}
        #       
        logs_dir="logs2"
        if os.path.exists(logs_dir) and os.path.isdir(logs_dir):
            pass
        else:
            os.mkdir(logs_dir)
        #   log    
        timestamp=time.strftime("%Y-%m-%d",time.localtime())
        logfilename='%s.txt' % timestamp
        logfilepath=os.path.join(logs_dir,logfilename)
        rotatingFileHandler = logging.handlers.RotatingFileHandler(filename =logfilepath,
                                                                   maxBytes = 1024 * 1024 * 50,
                                                                   backupCount = 5)
        #       
        formatter = logging.Formatter('[%(asctime)s] [%(levelname)s] %(message)s', '%Y-%m-%d %H:%M:%S')
        rotatingFileHandler.setFormatter(formatter)
        #      
        console = logging.StreamHandler()
        console.setLevel(logging.NOTSET)
        console.setFormatter(formatter)
        #           
        self.logger.addHandler(rotatingFileHandler)
        self.logger.addHandler(console)
        self.logger.setLevel(logging.NOTSET)
 
    def info(self, message):
        self.logger.info(message)
 
    def debug(self, message):
        self.logger.debug(message)
 
    def warning(self, message):
        self.logger.warning(message)
 
    def error(self, message):
        self.logger.error(message)
2.호출 모듈
다른 py 파일 만 들 기

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Author: zhangjun
# @Date  : 2018/7/26 9:21
# @Desc  : Description
import logging
logger = logging.getLogger(__name__)
import logutil2
 
if __name__ == '__main__':
    logger=logutil2.logs()
    logger.info("this is info")
    logger.debug("this is debug")
    logger.error("this is error")
    logger.warning("this is warning")
결과 전시:
1.콘 솔 출력

2.로그 파일 전시
디 렉 터 리 만 들 기

로그 파일 의 기록

이상 은 python 이 logging 로그 패 키 징 에 대한 자세 한 내용 입 니 다.python logging 로그 패 키 징 에 관 한 자 료 는 다른 글 을 주목 하 십시오!

좋은 웹페이지 즐겨찾기