我需要使用debug
模块替换 Node 应用程序中的console.log
。我已使用以下命令在应用程序中安装了debug
模块。
npm install debug
然后,按如下所述初始化
debug
变量。const debug = require('debug')('http');
debug('debug information');
但是没有任何内容登录到终端。任何帮助将不胜感激。
最佳答案
不要忘了在解释器中的示例下方,使用调试功能列表设置DEBUG env变量
~ DEBUG=http node
> var debug = require('debug')('http')
undefined
> debug('Test debug log')
http Test debug log +0ms
undefined
关于node.js - 我遇到以下错误-NPM错误: debug module is not working,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26885685/