
Product
Announcing Precomputed Reachability Analysis in Socket
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
@barchart/log4js-node-appenders
Advanced tools
Assorted appenders for use with the log4js library.
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');
This library is available as a public module on NPM.
npm install @barchart/log4js-node-appenders -S
This software is provided under the MIT license.
FAQs
Custom appenders for log4js
The npm package @barchart/log4js-node-appenders receives a total of 164 weekly downloads. As such, @barchart/log4js-node-appenders popularity was classified as not popular.
We found that @barchart/log4js-node-appenders demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.
Product
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.