.. | ||
index.js | ||
package.json | ||
Readme.md | ||
test.js |
abstract-logging
This module provides an interface for modules to include so that they can support logging via an external logger that conforms to the standard Log4j interface. One such logger is Pino. This module is intended for modules that are meant to be used by other modules.
Example:
'use strict'
function AwesomeLibrary (options) {
this.log = (options.logger) ? options.logger : require('abstract-logging')
}
.prototype.coolMethod = function () {
AwesomeLibrarythis.log.trace('AwesomeLibrary.coolMethod was invoked')
return {}
}
.exports = AwesomeLibrary module
Interface
Available methods:
fatal
error
warn
info
debug
trace
All methods are no operation functions.