码迷,mamicode.com
首页 > 编程语言 > 详细

python项目_log日志的使用

时间:2020-07-02 18:37:52      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:code   自己   dir   exist   level   添加   使用   required   nbsp   

log日志的使用(在settings.py文件中添加)

# 日志配置
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.utils.log.RequireDebugTrue,
        },
    },
    handlers: {
        console: {
            level: DEBUG,
            filters: [require_debug_true],
            class: logging.StreamHandler,
            formatter: simple
        },
        file: {
            level: INFO,
            class: logging.handlers.RotatingFileHandler,
            # 日志位置,日志文件名,日志保存目录必须手动创建
            filename: os.path.join(os.path.dirname(BASE_DIR), "logs/luffy.log"),
            # 日志文件的最大值,这里我们设置300M
            maxBytes: 300 * 1024 * 1024,
            # 日志文件的数量,设置最大日志数量为10
            backupCount: 10,
            # 日志格式:详细格式
            formatter: verbose
        },
    },
    # 日志对象
    loggers: {
        django: {
            handlers: [console, file],
            propagate: True, # 是否让日志信息继续冒泡给其他的日志处理系统
        },
    }
}

2.自己需要手动添加logs文件

‘filename‘: os.path.join(os.path.dirname(BASE_DIR), "logs/luffy.log"),   ##在指定路径下添加logs文件

 

python项目_log日志的使用

标签:code   自己   dir   exist   level   添加   使用   required   nbsp   

原文地址:https://www.cnblogs.com/jalen-123/p/13226186.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!