码迷,mamicode.com
首页 > 其他好文 > 详细

[Debug] debug module

时间:2020-03-01 21:43:38      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:put   override   github   set   targe   bin   console   use   hub   

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

标签:put   override   github   set   targe   bin   console   use   hub   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!