Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

vertex-logger

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vertex-logger

A logger.

latest
Source
npmnpm
Version
2.3.2
Version published
Weekly downloads
37
-26%
Maintainers
1
Weekly downloads
 
Created
Source

npm Build Status Coverage Status

vertex-logger

A logger.

npm install vertex-logger --save

const VertexLogger = require('vertex-logger');

const logger = new VertexLogger({
  root: 'root',
  name: 'name',
  level: 'info' // off fatal error warn info debug trace
});

logger.level = 'debug'; // reset level

logger.info('interpo%s st%s', 'lated', 'ring');
// if stdout is TTY:
//   [ info] (root/name) interpolated string (201ms)
// if not:
//   2016-10-21 14:11:31.471 [ info] (root/name) interpolated string (201ms)

logger.fatal(); // to stderr
logger.error(); // to stderr
logger.warn();  // to stdout
logger.info();  // to stdout
logger.debug(); // to stdout
logger.trace(); // to stdout

logger.error("couldn't", new Error('Why'));
// [error] (root/name) couldn't (1231ms)
// Error: Why
//     at repl:1:25
//     at sigintHandlersWrap (vm.js:22:35)
//     at sigintHandlersWrap (vm.js:96:12)
//     ...

A tree of loggers...

...can be built for context.

let appLogger = new VertexLogger({
  root: 'app-name',
  name: 'application'
});

let serviceLogger = appLogger.createLogger({
  name: 'service-name'
});

let componentLogger = serviceLogger.createLogger({
  name: 'component-name'
});

//
// Log messages only display 'root/name' and not 'root/parent/parent/name'
//
// eg.

componentLogger.info('message');
// [ info] (app-name/component-name) message (0ms)

A repl

…can be registered via any logger in the tree

let logger = new VertexLogger();
let repl = require('repl').start();

logger.repl = repl; // to register the repl

// now the repl prompt will remain continuously below the latest logged message

logger.repl = undefined // to unregister the repl

// supports only one repl
// repl can be registered at any logger in the tree and will be applied to all

Loglevel functors...

...can be passed as loglevel to target specific components.

let logger = new VertexLogger({
  root: 'app-name',
  name: 'application',
  
  level: (info) => {
    if (info.name == 'specific-component') return 'trace';
    // defaults to 'info'
  }
});

// The level functor is inherited into the tree of loggers
// - it overrides log levels passed as string on createLogger() child
// - it does not override loglevels passed as functions on createLogger() child


// Level by functor can also be directly assigned

logger.level = (info) => {
  if (info.ancestors.indexOf('service-name') >= 0) return 'off';
  if (info.ancestors.pop() == 'specific-parent') return 'off';
  return 'trace';
}

Todo

parentLogger.levelAll == 'off' || fn; // applied to all children

FAQs

Package last updated on 06 Nov 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