UNPKG

lambda-log

Version:

Lightweight logging library for any Node 10+ applications

10 lines (8 loc) 326 B
const LambdaLog = require('./lib/LambdaLog'); /** * Instance of the LambdaLog class which is exported when calling `require('lambda-log')`. For more * advanced usage, you can create a new instance of the LambdaLog class via `new log.LambdaLog()`. * @type {LambdaLog} */ const log = new LambdaLog(); module.exports = log;