升级到express4,如何登录到控制台?

时间:2014-07-26 07:56:05

标签: logging express migration

我有一个express3应用程序,我将每个http操作记录到控制台,如下所示:

app.use(express.logger('dev')); // log every request to the console

使用快递4,我必须这样做:

npm install express-logger --save

然后

var logger = require('express-logger');
[...]
app.use(logger({path: "/path/to/logfile.txt"}));    

有没有像我使用express3那样登录控制台的方法?

请参阅:https://github.com/joehewitt/express-logger

1 个答案:

答案 0 :(得分:0)

我刚刚在这里阅读(https://github.com/senchalabs/connect#middleware)记录器现在名为morgan。

请参阅:https://github.com/expressjs/morgan