Changes
- update dependencies
- The
breakLength
is changed toInfinity
(single-line printing) for better log processing when logger prints objects and arrays. - adds ability to customise console object/array printing #285
const util = require("util"); const broker = new ServiceBroker({ logger: true, logObjectPrinter: o => util.inspect(o, { depth: 4, colors: false, breakLength: 50 }) // `breakLength: 50` activates multi-line object });