🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

@barchart/log4js-node-appenders

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@barchart/log4js-node-appenders

Custom appenders for log4js

1.1.5
latest
npm
Version published
Weekly downloads
134
2.29%
Maintainers
1
Weekly downloads
 
Created
Source

@barchart/log4js-node-appenders

AWS CodeBuild NPM

Assorted appenders for use with the log4js library.

Console Appender (for AWS Lambda)

A console appender that routes output to the correct function of the console object. This appender is useful for logging within an AWS Lambda function (avoids writing all logs at the INFO level).

  • TRACE -> console.trace
  • DEBUG -> console.debug
  • INFO -> console.log
  • WARN -> console.warn
  • ERROR -> console.error
  • FATAL -> console.error

Usage Example

const log4js = require('log4js');

const appenders = require('@barchart/log4js-node-appenders');

log4js.configure({
	categories: {
		default: { appenders: [ 'lambda' ], level: 'trace' }
	},
	appenders: {
		lambda: {
			type: appenders.lambda,
			layout: {
				type: 'pattern',
				pattern: '%c - %m%'
			}
		}
	}
});

const logger = log4js.getLogger('Example');

logger.trace('Trace level log message');
logger.debug('Debug level log message');
logger.info('Info level log message');
logger.warn('Warn level log message');
logger.error('Error level log message');
logger.fatal('Fatal level log message');

Package Managers

This library is available as a public module on NPM.

npm install @barchart/log4js-node-appenders -S

License

This software is provided under the MIT license.

FAQs

Package last updated on 24 Jan 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts