stream.write is not a function when using morgan with logger

荒凉一梦 提交于 2019-12-02 03:53:47

On App.js, try changing

app.use(morgan('combined', { "stream": winston.stream}));

to

app.use(morgan('combined', { "stream": winston.stream.write}));

This seems to work even though I don't know why.

I think you didn't export module correctly, should be:

var winston = require('./config/winston');
winston.logger(module);

instead:

var winston = require('./config/winston')(module);
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!