24 lines
		
	
	
		
			431 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			431 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict'
 | 
						|
var winston = require('winston')
 | 
						|
winston.emitErrs = true
 | 
						|
 | 
						|
var logger = new winston.Logger({
 | 
						|
  transports: [
 | 
						|
    new winston.transports.Console({
 | 
						|
      level: 'debug',
 | 
						|
      handleExceptions: true,
 | 
						|
      json: false,
 | 
						|
      colorize: true,
 | 
						|
      timestamp: true
 | 
						|
    })
 | 
						|
  ],
 | 
						|
  exitOnError: false
 | 
						|
})
 | 
						|
 | 
						|
module.exports = logger
 | 
						|
module.exports.stream = {
 | 
						|
  write: function (message, encoding) {
 | 
						|
    logger.info(message)
 | 
						|
  }
 | 
						|
}
 |