npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@elunic/debug-levels

v0.2.9

Published

[![Build Status](https://travis-ci.org/elunic/debug-levels.svg?branch=master)](https://travis-ci.org/elunic/debug-levels)

Downloads

953

Readme

@elunic/debug-levels

Build Status

Thin wrapper around the visionmedia/debug module, providing support for both:

  • debug levels (fatal, error, warn, info, debug, trace)
  • easy creation of child namespaces

The decision to write a new wrapper rather than use an existing one (such as debug-level, debug-levels) was made because of the requirement for child namespaces within the debug "namespace" concept. Currently, to our knowledge, no module providing both easy creation of child namespaces and debug levels exists.

Table of Contents

Installation

$ npm install @elunic/debug-levels

Log levels

@elunic/debug-levels provides the bunyan log levels: fatal, error, warn, info, debug, trace.

A description of these levels can be found on the bunan GitHub page.

Usage

@elunic/debug-levels, like debug, exposes a function, which takes one argument: the debug namespace.

Like debug, this returns a function which can be used to log. In contrast to debug, however, this logging function will log with the default logging level 'INFO'.

This is intended to make @elunic/debug-levels a progressive enhancement and drop-in replacement for debug.

Additionally, the returned function object has method properties for each logging level.

Example:

const logger = require('@elunic/debug-levels')('http');

logger('information about regular operation');
// INFO http information about regular operation

logger.fatal('unrecoverable error, an operator should look at this as soon as possible');
// FATAL http unrecoverable error, an operator should look at this as soon as possible

logger.error('recoverable error');
// ERROR http recoverable error

logger.warn('warning');
// WARNING http warning

logger.info('information about regular operation');
// INFO http information about regular operation

logger.debug('debug information, perhaps useful during development or troubleshooting');
// DEBUG http debug information, perhaps useful during development or troubleshooting

logger.trace('highly detailed information');
// TRACE http highly detailed information

Child namespaces

Each logger exposes a createLogger function, which creates a child namespace.

const logger = require('@elunic/debug-levels')('http');
const getLogger = logger.createLogger('get');

getLogger.info('200 /index.js');
// INFO http:get 200 /index.js

The same can be achieved through an initial declaration of the namespace using the debug syntax:

const getLogger = require('@elunic/debug-levels')('http:get');

However, using logger.createLogger() is useful if you do not want to repeat yourself by writing out the parent namespace throughout your module.

Global API

@elunic/debug-levels exposes the underlying debug API with two additions: setLevel() and getLevel(), used to set or get the current global debug level. Note that this level may be overriden on a per-logger basis using logger.setLevel().

For all other configuration options/APIs, consult the debug documentation. The API can be applied to debuglevels.debug (see below).

const debuglevels = require('@elunic/debug-levels');

// Output "warn" and above levels only
debuglevels.setLevel('warn');

debuglevels.getLevel();
// "warn"

// Convenience assignments
debuglevels.level = 'warn'; // set
debuglevels.level; // get

// debuglevels exposes debug's enable() and disable() methods
debuglevels.enable('http');
debuglevels.enable('http,socket.io');
debuglevels.enable('http:get');
debuglevels.enable('*');

// ... as well as the underlying debug object
debuglevels.debug.enable('http');

Per-logger log level

Each logger may have its debug level set on an individual basis. This setting overrides the global debug level, so it is possible to have a logger that logs everything on trace while the global level is set to fatal.

const debuglevels = require('@elunic/debug-levels');

const logger = debuglevels('http');
const getLogger = debuglevels('http:get');

debuglevels.setLevel('fatal');
getLogger.setLevel('trace');

// Silent
logger.info('generic http info');

// Produces output
getLogger.info('get request');

// Convenience assignments
getLogger.level; // get; "trace"
getLogger.level = 'trace'; // set

To remove a child logger's individual log level, call it with a falsy value:

getLogger.setLevel(null);

Environment variables

As a wrapper around debug, @elunic/debug-levels provides all its environment variables (see the debug documentation), with one addition: DEBUG_LEVELS.

DEBUG_LEVELS can be set to either of the supported debug levels.

Example usage:

DEBUG_LEVEL=debug DEBUG=* node index.js

License

(The MIT License)

Copyright (c) 2018 elunic <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.