python_fullstack - Django 프레임워크(12) - Django Logging 구성 예제
6668 단어 Django 프레임워크
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/
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
python_fullstack - Django 프레임워크 (3) - Django 템플릿 언어현재 순환하는 인덱스 값 (1부터)forloop.counter0 현재 루프의 인덱스 값(0부터 시작)forloop.revcounter 현재 순환의 역순 인덱스 값 (1부터)forloop.revcounter0 현재 순...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.