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