Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

log4js-amqp

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

log4js-amqp

A log4js log appender to push logs into AMQP

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

log4js-amqp

log4js-amqp is a log4js log appender to push log messages into AMQP

Installation

You can install install log4js-amqp via npm:

npm install log4js-amqp

Usage

var Log4js = require('log4js')();
var Log4jsAmqp = require('log4js-amqp');

Log4js.addAppender(Log4jsAmqp.createAppender({
    host: 'yourhostname',
    login: 'yourlogin',
    password: 'yourpassword',
    exchange: 'yourexchange'
  })
);

var log = Log4js.getLogger('unittest');

log.debug('debuglog');
log.info('infolog');

FAQs

Package last updated on 22 Jan 2011

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc