python_fullstack - Django 프레임워크(12) - Django Logging 구성 예제

Django Logging
1. Django 로그 구성 템플릿
LOGGING = {
    'version': 1,
    'disable_existing_loggers': False,
    'formatters': {
        'standard': {
            'format': '[%(asctime)s][%(threadName)s:%(thread)d][task_id:%(name)s][%(filename)s:%(lineno)d]'
                      '[%(levelname)s][%(message)s]'
        },
        'simple': {
            'format': '[%(levelname)s][%(asctime)s][%(filename)s:%(lineno)d]%(message)s'
        },
        'collect': {
            'format': '%(message)s'
        }
    },
    'filters': {
        'require_debug_true': {
            '()': 'django.utils.log.RequireDebugTrue',
        },
    },
    'handlers': {
        'console': {
            'level': 'DEBUG',
            'filters': ['require_debug_true'],  #    Django debug True         
            'class': 'logging.StreamHandler',
            'formatter': 'simple'
        },
        'default': {
            'level': 'INFO',
            'class': 'logging.handlers.RotatingFileHandler',  #      ,   
            'filename': os.path.join(BASE_LOG_DIR, "xxx_info.log"),  #     
            'maxBytes': 1024 * 1024 * 50,  #      50M
            'backupCount': 3,
            'formatter': 'standard',
            'encoding': 'utf-8',
        },
        'error': {
            'level': 'ERROR',
            'class': 'logging.handlers.RotatingFileHandler',  #      ,   
            'filename': os.path.join(BASE_LOG_DIR, "xxx_err.log"),  #     
            'maxBytes': 1024 * 1024 * 50,  #      50M
            'backupCount': 5,
            'formatter': 'standard',
            'encoding': 'utf-8',
        },
        'collect': {
            'level': 'INFO',
            'class': 'logging.handlers.RotatingFileHandler',  #      ,   
            'filename': os.path.join(BASE_LOG_DIR, "xxx_collect.log"),
            'maxBytes': 1024 * 1024 * 50,  #      50M
            'backupCount': 5,
            'formatter': 'collect',
            'encoding': "utf-8"
        }
    },
    'loggers': {
       #    logger      
        '': {
            'handlers': ['default', 'console', 'error'],  #        'console'  
            'level': 'DEBUG',
            'propagate': True,
        },
        #    'collect' logger     
        'collect': {
            'handlers': ['console', 'collect'],
            'level': 'INFO',
        }
    },
}

2. 공식 링크
https://docs.djangoproject.com/en/1.11/topics/logging/

좋은 웹페이지 즐겨찾기