JSPM

enumerate-log

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q20613F
  • License MIT

Logger for enumerate and enumerate plugins

Package Exports

  • enumerate-log

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (enumerate-log) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

enumerate-log

Logger for enumerate and enumerate plugins

Usage

var logger = require('enumerate-log');

// logs strings
logger.debug('The MOST verbose!');
logger.info('Some important info');
logger.warn('All the warnings to you');
logger.error('OH NO! SOMETHING HAPPENED!');

// supports util.format!
logger.info('%s style!', 'printf');

// log anything
logger.debug({ my: 'obj' });
logger.info([1, 2, 3]);