0.1.10 • Published 8 years ago

cf-log v0.1.10

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

cf-log

npm.io

A Conditional Logger with Colored Labels for Node.js

A simple conditional logger for node.js. Each logging statement is configured with a title and message. You can optionally add a map of environment variables to check for prior to logging and label color.

Installation

npm install cf-log

Example Usage

import logger from 'cf-log';

logger.log({
  title: 'Request',
  message: 'Some cookies',
  env: {
    NODE_ENV: 'development',
    LOG_FEATURE: 'cookieJar'
  }
});

This block of code will log:

Request    Some cookies

when the environment variables NODE_ENV and LOG_FEATURE are set to their respective values. The env map may contain any arbitrary mapping of environment variables to values.

Colors

  1. logger.green (default)
  2. logger.red
  3. logger.blue
  4. logger.yellow

Imagery

npm.io npm.io

0.1.10

8 years ago

0.1.9

8 years ago

0.1.8

8 years ago

0.1.7

8 years ago

0.1.6

8 years ago

0.1.5

8 years ago

0.1.4

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago