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

node-xmpp-logger

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

node-xmpp-logger

Logger for node-xmpp

  • 0.0.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

node-xmpp-logger

Logger for node-xmpp.

Build Status Dependency Status NPM version

Install

npm install node-xmpp-logger

Usage

var xmpp   = require("node-xmpp");
var Logger = require("node-xmpp-logger");

// create an xmpp object
var component = new xmpp.Component({
  jid      : "mycomponent",
  password : "secret",
  host     : "127.0.0.1",
  port     : "8888"
});

// create new instance
var log = new Logger(xmpp);

// add an recipient
log.register("myLoggerBot@service.tld");

// allow him to add you to his roster
log.sendInvites("myLoggerBot@service.tld");

// set the log level
log.setLogLevel("myLoggerBot@service.tld", "warn");

log.debug("First log");
log.info("Hello world!");
log.warn("The server is quite busy");
log.error("Something went wrong");
log.fatal("OMG!");

Timestamp

node-xmpp-logger uses Moment.js and you can define your timestamp format by setting the timeFormat property:

log.timeFormat = "HH:mm:ss"

Possible formats: Moment docs

FAQs

Package last updated on 14 Oct 2013

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