我是靠谱客的博主 个性奇迹,这篇文章主要介绍python3.7+django2.2开发中配置日志工程中:ValueError: Unable to configure handler ‘file‘,现在分享给大家,希望可以做个参考。

1、出现该问题的是因为在黑马程序员中,其提供的:'file': {  # 向文件中输出日志
            'level': 'INFO',
            'class': 'logging.handlers.RotatingFileHandler',
            'filename': os.path.join(os.path.dirname(BASE_DIR), 'logs/meiduo.log'),  # 日志文件的位置
            'maxBytes': 300 * 1024 * 1024,
            'backupCount': 10,
            'formatter': 'verbose'
        },
    },

2、问题出现在 'filename': os.path.join(os.path.dirname(BASE_DIR), 'logs/meiduo.log'),  # 日志文件的位置

3、解决问题的方法:将 'filename': os.path.join(os.path.dirname(BASE_DIR), 'logs/meiduo.log')改写成为'filename': os.path.join(BASE_DIR, 'logs/meiduo.log'),主要是在拼接地址的时候出现了问题。

 

最后

以上就是个性奇迹最近收集整理的关于python3.7+django2.2开发中配置日志工程中:ValueError: Unable to configure handler ‘file‘的全部内容,更多相关python3.7+django2.2开发中配置日志工程中:ValueError:内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(61)

评论列表共有 0 条评论

立即
投稿
返回
顶部