You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

@insidewarehouse/log4js-ain2

Package Overview
Dependencies
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@insidewarehouse/log4js-ain2

An Ain2 based Syslog transport for log4js-node

0.1.8
latest
Source
npm
Version published
Maintainers
2
Created
Source

log4js-ain2

An Ain2 based Syslog transport for log4js-node.

Installation

  $ npm install log4js-ain2

Usage

To use this Syslog transport in log4js-node, you simply need to 'npm install' it and add it as an appender

Configuration file example:


{
	"appenders": [
		{
			"type": "log4js-ain2", 
			"tag": "SYSLOG_TAG", 
			"facility": "daemon", 
			"hostname": "SYSLOG_SERVER", 
			"port": SYSLOG_PORT
		}
	]
} 

Code example:


var log4js = require('log4js');

log4js.configure({
	appenders: [ 
		{ 
			type: 'log4js-ain2', 
			tag: 'SYSLOG_TAG', 
			facility: 'daemon', 
			hostname: 'SYSLOG_SERVER', 
			port: SYSLOG_PORT
		}
	]
});

var logger = log4js.getLogger('log4js-ain2-tester');


logger.trace('trace -Entering cheese testing');
logger.debug('debug - Got cheese.');
logger.info('info - Cheese is Gouda.');
logger.warn('warn - Cheese is quite smelly.');
logger.error('error -Cheese is too ripe!');
logger.fatal('fatal - Cheese was breeding ground for listeria.');

NOTE: Options are passed through to Ain2

Log Levels

This is the mapping from log4js-node levels to ain2 levels

ALL -> debug
TRACE -> debug
DEBUG -> debug
INFO -> info
WARN -> warn
ERROR -> err
FATAL -> crit

Syslog (ain2) Configuration

See ain2

Keywords

logging

FAQs

Package last updated on 01 Jan 2017

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