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

mgutz-logmagic

v0.2.1

Published

Dynamic and Configurable logging framework for node.js

Downloads

7

Readme

Welcome to Log Magic.

This project is usable. It doesn't do everything it should, yet.

The goal is to have a fast and easy to use logging subsystem that can be dynamically reconfigured to provide insight into production systems.

Logmagic does its magic by generating objects with generated functions that are only modified when the logging system is reconfigured, thus your entire logging path is contained within long-lived functions that V8 is able to JIT.

Getting Started

If you had a file named like, 'lib/foo/bar.js', at the top of it, you would put the following:

var log = require('logmagic').local('mylib.foo.bar');

Then inside bar.js, you would just use the logger like any normal logger:

log.info('Hello!')
log.error('By default, format strings are not used.', {SOME_VAR: 'myvalue'})
log.errorf('Just add 'f' to any log method, and you get format strings too: ${SOME_VAR}', {SOME_VAR: 'myvalue'})

In any other part of your application, you can reconfigure the logging subsystem at runtime, making it easy to change log levels for specific modules dynamically.

/* Register an ad-hoc sink */
var logmagic = require('logmagic');
logmagic.registerSink('ad-hoc', function(module, level, message) { console.log(message); });

/* Send Info an higher in the root logger to stdout */
logmagic.route('__root__', logmagic.INFO, 'console')

/* Reconfigure all children of mylib to log all debug messages to your custom sink */
logmagic.route('mylib.*', logmagic.DEBUG, 'ad-hoc')

Sinks

Sink modules should have this interface

{
  /* the log message callback */
  callback: function(modulename, level, message, obj) {}

  /* sets options for sink */
  setOptions: function(options) {}

  /* dispose of resources */
  dispose: function() {}
}

Registering a sink instance verbosely

var fileLog = new logmagic.sinks.File({filename: '/var/log/myapp.log'});
logmagic.registerSink('main', fileLog);

Registering the easy way for Console, File and Recipients

logmagic.registerFileSink('fileLog', '/var/log/myapp.log');
logmagic.registerConsoleSink('console', 'dark');

Setting options on a sink instance

logmagic.setSinkOptions('console', {plain: true});
logmagic.setSinkOptions('console', {scheme: 'light'});

Routing to multiple sinks

logmagic.registerRecipientsSink('multi', ['fileLog', 'console']);
logmagic.route('__root__', logmagic.INFO, 'multi')

Pre-registered sinks

  • console
  • grayLog2-stderr

Built-in sinks

  • Console: Logs to console with colors (may be disabled)
  • GrayLog2: Graylog2-style JSON to stderr
  • File: log to a file
  • Recipients: log to multiple registered sinks

See tests/t.js for an example.