UNPKG

aedes-cli

Version:
18 lines (14 loc) 436 B
'use strict' const pino = require('pino') const pretty = require('pino-pretty') const prettyOptions = { levelFirst: true, // shwo level ignore: 'pid,hostname,name', // params to ignore in the output translateTime: true // shwo time string instead of timestamp } module.exports = function initLogger (options) { return pino({ name: options.name || 'aedes', level: options.level || 'warn' }, pretty(prettyOptions)) }