UNPKG

backendless-consul-config-provider

Version:

Consul Configs provider for Backendless' JS Servers

27 lines (20 loc) 373 B
/* eslint-disable no-console */ 'use strict' const Logger = { log(...args) { console.log(...args) }, info(...args) { console.log('INFO', ...args) }, warn(...args) { console.warn('WARN', ...args) }, debug(...args) { console.debug('DEBUG', ...args) }, error(...args) { console.error('ERROR', ...args) } } module.exports = Logger