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

node debug包

时间:2016-04-27 18:44:29      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

‘use strict‘;

var debug = require(‘debug‘)(‘http‘)
  , http = require(‘http‘)
  , name = ‘My App‘;

// fake app

debug(‘booting %s‘, name);

http.createServer(function(req, res){
  debug(req.method + ‘ ‘ + req.url);
  res.end(‘hello\n‘);
}).listen(3000, function(){
  debug(‘listening‘);
});

代码如上,在命令台输入一下命令可看到打印信息

set DEBUG=http & node app.js http> debug.log

如果是这种方式定义debug名字(mydebug:http mydebug:work)时可以这样输入
set DEBUG=http: * & node app.js http> debug.log(代表调试所有mydebug:开头的)

 

 

技术分享

 

node debug包

标签:

原文地址:http://www.cnblogs.com/ytu2010dt/p/5439760.html

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