标签:handle djang 设置 config roo code handler 条件 col
一、前提条件
1、Django 项目接入了 log 日志模块
二、解决方案
启动项目或者项目运行中,遇到如下报错
File "C:\Python38\lib\logging\config.py", line 808, in dictConfig dictConfigClass(config).configure() File "C:\Python38\lib\logging\config.py", line 570, in configure raise ValueError(‘Unable to configure handler ‘ ValueError: Unable to configure handler ‘default‘
这是因为 logs 目录不存在或者被误删导致的。
解决方式:
1、在项目根目录下面新建目录 logs
(备注:这个文件夹名称,取决于 settings.py 设置的日志目录
比如:我的是 LOG_ROOT = os.path.join(BASE_DIR, ‘logs‘) )
Djaong 运行报错:ValueError: Unable to configure handler 'default'
标签:handle djang 设置 config roo code handler 条件 col
原文地址:https://www.cnblogs.com/yebaofang/p/13647899.html