Socket
Socket
Sign inDemoInstall

@barchart/log4js-node-appenders

Package Overview
Dependencies
0
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @barchart/log4js-node-appenders

Custom appenders for log4js


Version published
Weekly downloads
46
decreased by-46.51%
Maintainers
1
Install size
5.10 kB
Created
Weekly downloads
 

Readme

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

Last updated on 24 Jan 2022

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc