🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

logging

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

logging

Lightweight informative modern console logging.

3.3.0
latest
Version published
Weekly downloads
3.3K
2.08%
Maintainers
1
Weekly downloads
 
Created

Logging Build Status

Lightweight informative modern console logging.

logging

Install

yarn add logging

Features

  • Simple.
  • Log levels.
  • Nice coloring.

Usage

// or const createLogger = require('logging');  
import createLogger from 'logging';

const logger = createLogger('FeatureName');

logger.info('Interesting');
// -> [ Feature ] Interesting

logger.warn('Hmmm...', { details });
// -> [ WARNING Feature ] Hmmm... { details object }

logger.error('Not good.', 'Not good at all.', { err }, { context }, { etc });
// -> [ ERROR Feature ] Not good. Not good at all. { err } { context } ...

// uses the debug module, use DEBUG=* or DEBUG=FeatureName to see these items.
logger.debug('Interesting');
// -> [ Feature ] Interesting

FAQs

Package last updated on 05 Feb 2021

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