mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-27 09:35:39 -05:00
9 lines
218 B
CoffeeScript
9 lines
218 B
CoffeeScript
winston = require 'winston'
|
|
|
|
module.exports.setup = ->
|
|
winston.remove(winston.transports.Console)
|
|
if not global.testing
|
|
winston.add(winston.transports.Console,
|
|
colorize: true,
|
|
timestamp: true
|
|
)
|