log.js 279 B

123456789101112
  1. const conf = require('./config');
  2. const isProduction = conf.env === 'production';
  3. const mozlog = require('mozlog')({
  4. app: 'FirefoxSend',
  5. level: isProduction ? 'INFO' : 'verbose',
  6. fmt: isProduction ? 'heka' : 'pretty',
  7. debug: !isProduction
  8. });
  9. module.exports = mozlog;