DEV Community

Discussion on: What JS Logging library / tool do you use?

Collapse
 
avalander profile image
Avalander

console.log and node app.js > app.log work fine most of the time.

Sometimes, if I need to filter logs and stuff, I write them as json objects instead of plain files and create a very simple wrapper over console.log, but I've never had the need to do anything very elaborated.