1.0.1 • Published 6 years ago

winston-huuminh-transport v1.0.1

Weekly downloads
4
License
GPL-3.0
Repository
github
Last release
6 years ago

Installing

npm install --save winston-huuminh-transport

Usage

const opts = {
	level: 'verbose',
    filename: 'huuminh.log',
    dirname: path.join(__dirname, "logs")
};

const logger = winston.createLogger({
    level: 'info',
    transports: [
        require('winston-huuminh-transport')(opts)
    ]
});