mirror of
https://github.com/mmumshad/ansible-playable.git
synced 2025-02-15 04:42:05 +00:00
10 lines
206 B
JavaScript
10 lines
206 B
JavaScript
|
/**
|
||
|
* Created by mannam4 on 7/8/2017.
|
||
|
*/
|
||
|
|
||
|
var winston = require('winston');
|
||
|
|
||
|
winston.add(winston.transports.File, {filename: './logs/server.log', json: false, colorize: true});
|
||
|
|
||
|
module.exports = winston;
|