首页 > 其他 > 详细

[Debug] debug module

时间:2020-03-01 21:22:09      阅读:67      评论:0      收藏:0      [点我收藏+]

Install:

npm i debug supports-color --save

 

Docs

 

Code:

// stdout.js

var debug = require(‘debug‘);
var error = debug(‘app:error‘);

// by default stderr is used
error(‘goes to stderr!‘);

var log = debug(‘app:log‘);
// set this namespace to log via console.log
log.log = console.log.bind(console); // don‘t forget to bind to console!
log(‘goes to stdout‘);
error(‘still goes to stderr!‘);

// set all output to go via console.info
// overrides all per-namespace log settings
debug.log = console.info.bind(console);
error(‘now goes to stdout via console.info‘);
log(‘still goes to stdout, but via console.info now‘);

 

If you just run:

node ./stdout.js

Nothing will be output.

 

You have to run:

技术分享图片

 

Apply wildcards:

技术分享图片

[Debug] debug module

原文:https://www.cnblogs.com/Answer1215/p/12392092.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!