UNPKG

@workablehr/riviere

Version:

log inbound/outbound HTTP traffic

15 lines (11 loc) 278 B
const BaseFormatter = require('./BaseFormatter'); class MissingFormatter extends BaseFormatter { constructor(type = '') { super(); this.type = type; } formatObject(obj) { return 'Unexpected formatter: ' + this.type; } } module.exports = MissingFormatter;