UNPKG

dredd

Version:

HTTP API Testing Framework

18 lines (16 loc) 292 B
const winston = require('winston'); module.exports = new (winston.Logger)({ transports: [ new (winston.transports.Console)({ colorize: true }), ], levels: { debug: 2, warn: 1, error: 0, }, colors: { debug: 'cyan', warn: 'yellow', error: 'red', }, });