We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
window环境下无法使用nodejs开启LOG_LEVEL=debug
以下方法均失败: 方法1:直接cmd命令 set LOG_LEVEL=debug && node app.js 方法2:bat文件 set LOG_LEVEL=debug node app.js 方法3:在server-enhanced目录下新建.env文件 使用node新增的对.env文件的支持 node --env-file=.env 方法4: ./src/logger.js直接修改level: process.env.LOG_LEVEL ?? 'info'为level: process.env.LOG_LEVEL ?? 'debug' 参考 方法5: 创建bat的快捷方式,在快捷方式添加环境变量LOG_LEVEL=debug
搞了半天以为是环境变量没生效,后来发现其它的环境变量都能设置成功,唯独LOG_LEVEL=debug不生效一直是info模式
No response
node --env-file=.env app.js
无
2.x
window x64
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug 描述
window环境下无法使用nodejs开启LOG_LEVEL=debug
以下方法均失败:
方法1:直接cmd命令
set LOG_LEVEL=debug && node app.js
方法2:bat文件
set LOG_LEVEL=debug
node app.js
方法3:在server-enhanced目录下新建.env文件 使用node新增的对.env文件的支持
node --env-file=.env
方法4:
./src/logger.js直接修改level: process.env.LOG_LEVEL ?? 'info'为level: process.env.LOG_LEVEL ?? 'debug' 参考
方法5:
创建bat的快捷方式,在快捷方式添加环境变量LOG_LEVEL=debug
搞了半天以为是环境变量没生效,后来发现其它的环境变量都能设置成功,唯独LOG_LEVEL=debug不生效一直是info模式
预期行为
No response
实际行为
No response
复现步骤
No response
启动命令及环境变量
node --env-file=.env app.js
日志内容
无
网易云音乐歌曲链接
No response
网易云音乐版本号
2.x
操作系统
window x64
其他信息
No response
问题排查
The text was updated successfully, but these errors were encountered: