11 lines
271 B
CoffeeScript
11 lines
271 B
CoffeeScript
|
winston = require("winston")
|
||
|
|
||
|
logger = new (winston.Logger)(
|
||
|
transports: [
|
||
|
new (winston.transports.Console)({ timestamp: true, colorize: true }),
|
||
|
new (winston.transports.File)({ filename: "log/application.log", timestamp: true })
|
||
|
]
|
||
|
)
|
||
|
|
||
|
module.exports = logger
|