aboutsummaryrefslogblamecommitdiffhomepage
path: root/helpers/logger.js
blob: 436091730dcce1d33cec50d503192a11175b3265 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                                       

              
                                
                            
                                  

                         
                                                                     



                                   
                                                    
















                                              
                   



                                         



                                                                                
    
;(function () {
  // Thanks http://tostring.it/2014/06/23/advanced-logging-with-nodejs/
  'use strict'

  var config = require('config')
  var path = require('path')
  var winston = require('winston')
  winston.emitErrs = true

  var logDir = path.join(__dirname, '..', config.get('storage.logs'))
  var logger = new winston.Logger({
    transports: [
      new winston.transports.File({
        level: 'debug',
        filename: path.join(logDir, 'all-logs.log'),
        handleExceptions: true,
        json: true,
        maxsize: 5242880,
        maxFiles: 5,
        colorize: false
      }),
      new winston.transports.Console({
        level: 'debug',
        handleExceptions: true,
        humanReadableUnhandledException: true,
        json: false,
        colorize: true
      })
    ],
    exitOnError: true
  })

  logger.stream = {
    write: function (message, encoding) {
      logger.info(message)
    }
  }

  // ---------------------------------------------------------------------------

  module.exports = logger
})()