stream.prod.js 229 B

12345678910
  1. let stream = undefined;
  2. const isFormat = !(process.env.FORMAT_NODE_LOG === 'false');
  3. if (isFormat) {
  4. const bunyanFormat = require('bunyan-format');
  5. stream = bunyanFormat({ outputMode: 'long' });
  6. }
  7. module.exports = stream;