django中日志器使用

时间:2021-08-08
本文章向大家介绍django中日志器使用,主要包括django中日志器使用使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

setting.py中进行添加

# 添加日志器
log_dir = os.path.join(BASE_DIR, 'logs')
file_path = os.path.join(BASE_DIR, 'logs/xxx.log')
if not os.path.exists(log_dir):
    os.makedirs(log_dir, exist_ok=True)
    # win不可用,linux下才能用
    # os.mknod(file_path)
    f = open(file_path, 'w+')
    f.close()
LOGGING = {
    'version': 1,
    'disable_existing_loggers': False,  # 是否禁用已经存在的日志器
    'formatters': {  # 日志信息显示的格式
        'verbose': {
            'format': '%(levelname)s %(asctime)s %(module)s %(lineno)d %(message)s'
        },
        'simple': {
            'format': '%(levelname)s %(module)s %(lineno)d %(message)s'
        },
    },
    'filters': {  # 对日志进行过滤
        'require_debug_true': {  # django在debug模式下才输出日志
            '()': 'django.utils.log.RequireDebugTrue',
        },
    },
    'handlers': {  # 日志处理方法
        'console': {  # 向终端中输出日志
            'level': 'INFO',
            'filters': ['require_debug_true'],
            'class': 'logging.StreamHandler',
            'formatter': 'simple'
        },
        'file': {  # 向文件中输出日志
            'level': 'INFO',
            'class': 'logging.handlers.RotatingFileHandler',
            'filename': os.path.join(BASE_DIR, 'logs/xxx.log'),  # 日志文件的位置
            'maxBytes': 300 * 1024 * 1024,
            'backupCount': 10,
            'formatter': 'verbose'
        },
    },
    'loggers': {  # 日志器
        'django': {  # 定义了一个名为django的日志器
            # 'handlers': ['console', 'file'],  # 可以同时向终端与文件中输出日志
            'handlers': ['file'],  # 可以同时向终端与文件中输出日志
            'propagate': True,  # 是否继续传递日志信息
            'level': 'INFO',  # 日志器接收的最低日志级别
        },
    }
}

记录效果:

原文地址:https://www.cnblogs.com/ziwu2/p/15115300.html