Express.js disable console color

后端 未结 2 812
庸人自扰
庸人自扰 2020-12-11 18:52

When starting an Express webapp from Eclipse, output in console has strange characters:

[90mGET / [32m200 [90m310ms - 162b[0m

I guess they

相关标签:
2条回答
  • 2020-12-11 19:23

    I think the 'tiny' logging format is similar to the (colored) 'dev' format:

    app.use(express.logger('tiny'));
    
    0 讨论(0)
  • 2020-12-11 19:31

    You can pass your own format instead of dev. refer this: http://www.senchalabs.org/connect/logger.html

    0 讨论(0)
提交回复
热议问题