mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 08:38:09 -05:00
8 lines
186 B
CoffeeScript
8 lines
186 B
CoffeeScript
|
winston = require('winston')
|
||
|
|
||
|
module.exports.setup = ->
|
||
|
winston.remove(winston.transports.Console)
|
||
|
winston.add(winston.transports.Console,
|
||
|
colorize: true,
|
||
|
timestamp: true
|
||
|
)
|