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

@aantthony/logger

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aantthony/logger

Simple console.log replacement

  • 1.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

logger

Simple console.log replacement.

npm install --save @aantthony/logger

Usage


var log = require('logger')('Login');

// 9720ms Login: Hello World!
log.info('Hello World!');

Disable output

require('logger').setOutputStream(null);

Collect log data:

require('logger').on('data', function (payload) {
  // { component: 'Login',
  // time: Thu Jun 18 2015 23:09:29 GMT+1000 (AEST),
  // hostname: 'Anthony.local',
  // level: 'info',
  // message: 'Hello World!',
  // pid: 46297,
  // data: undefined }
  console.log(payload);
});

FAQs

Package last updated on 03 Mar 2016

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