UNPKG

spur-common

Version:

A Node.JS library of common modules used as a base to most Node.JS applications.

21 lines (17 loc) 310 B
module.exports = function (BaseDelegate) { class Logger extends BaseDelegate { constructor() { super(); this.supportsMethods([ 'fatal', 'error', 'warn', 'info', 'log', 'debug', 'verbose' ]); } } return new Logger(); };