debug1

Posted 坐看云起时

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了debug1相关的知识,希望对你有一定的参考价值。

1

[Debug] debug module

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:

技术图片

以上是关于debug1的主要内容,如果未能解决你的问题,请参考以下文章

ssh 卡在 debug1:已发送 SSH2_MSG_KEX_DH_GEX_REQUEST(2048<3072<8192)

ssh登陆报错

ssh连接到centos主机,无法成功连接,报错如下,求大侠赐教!!感谢!!

无法打开授权,权限被拒绝[关闭]

登录操作需要很长时间(系统日志问题)

ssh -v root@xxxxx 显示登录的细节