此檔案要放到django 項目中的setting檔案夾,可以對檔案進行一些配置和修改
# 定義一下log檔案存放的位置
BASE_LOG_DIR = os.path.join(BASE_DIR, "log")
# Django項目日志配置
LOGGING = {
# 固定搭配的一個版本号
'version': 1,
# 禁用已經存在的logger執行個體
'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': '[%(asctime)s]%(message)s'
}
},
# 日志的過濾條件
'filters': {
# 需要debug=True
'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, "s8_info.log"), # 日志檔案
'maxBytes': 1024 * 1024 * 50, # 日志大小 50M
'backupCount': 5, # 日志檔案個數
'formatter': 'standard',
'encoding': 'utf-8',
},
# 專門記錄錯誤日志的
'error': {
'level': 'ERROR',
'class': 'logging.handlers.RotatingFileHandler', # 儲存到檔案,自動切
'filename': os.path.join(BASE_LOG_DIR, "s8_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, "s8_collect.log"),
'maxBytes': 1024 * 1024 * 50, # 日志大小 50M
'backupCount': 5,
'formatter': 'collect',
'encoding': "utf-8"
}
},
# 最後處理logger執行個體的配置
'loggers': {
# 預設的logger應用如下配置
'': {
'handlers': ['default', 'console', 'error'], # 上線之後可以把'console'移除
'level': 'DEBUG',
},
# 名為 'collect'的logger還單獨處理
'collect': {
'handlers': ['console', 'collect'],
'level': 'INFO',
},
'collect.son': {
'handlers': ['console',],
'level': 'INFO',
'propagate': False,
}
},
}
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'handlers': {
'console':{
'level':'DEBUG',
'class':'logging.StreamHandler',
},
},
'loggers': {
'django.db.backends': {
'handlers': ['console'],
'propagate': True,
'level':'DEBUG',
},
}
}
View Code
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',
}
},
}