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

simple-console-log-level

v1.0.1

Published

A dead simple logger with log level support

Downloads

4

Readme

simple-console-log-level

NPM version Build status changelog license

A dead simple logger with log level support, no dependencies and support all environments:

  • Web
  • Node
  • Weapp(微信小程序) - 做这个主要是因为需要在微信小程序里面用, 找了一圈发现没有合适的库(必须没有任何依赖)
  • ...

Will log to STDOUT or STDERR depending on the chosen log level. It uses console.trace, console.log, console.info, console.warn and console.error and hence supports the same API.

Log levels supported: trace, log, info, warn and error.

Installation

npm install simple-console-log-level --save

Example usage

var Logger = require('simple-console-log-level');

var logger = new Logger({
    level: Logger.LEVEL_LOG
});

logger.trace('trace'); // will not do anything
logger.log('log');     // will output 'log'
logger.info('info');   // will output 'info'
logger.warn('warn');   // will output 'warn'
logger.error('error'); // will output 'error'

Options

Configure the logger by passing an options object:

var Logger = require('simple-console-log-level');

var logger = new Logger({
    level: Logger.LEVEL_LOG,
    prefix: function() {
        return new Date().toISOString() + ' [' + this.options.level + ']';
    }
});

level

A string to specify the log level. Defaults to Logger.LEVEL_LOG.

All support levels(more below is more higher level).

  • Logger.LEVEL_TRACE -- Weapp debug mode(调试模式) could not output(in vConsole) this level's logs
  • Logger.LEVEL_LOG
  • Logger.LEVEL_INFO
  • Logger.LEVEL_WARN
  • Logger.LEVEL_ERROR

More higher than you setting level will output, more lower will not. Example: level: Logger.LEVEL_INFO, log levels below Logger.LEVEL_INFO(include itself) will output, log levels above Logger.LEVEL_INFO will not output.

prefix

Specify this option if you want to set a prefix for all log messages. This must be a string or a function that returns a string.

Will get the level of the currently logged message as the first argument.

Thanks