UNPKG

storm-replay

Version:

NodeJS wrapper for StormLib (https://github.com/ladislav-zezula/StormLib)

17 lines (12 loc) 311 B
/*jshint esversion: 6 */ /*jslint node: true */ "use strict"; const pino = require('pino'); const pretty = pino.pretty({forceColor: true}); pretty.pipe(process.stdout); var loglevel = process.env.LOGLEVEL || 'warn'; module.exports = pino({ name: 'hots-parser', safe: true, level: loglevel }, pretty);