Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

domino-logger

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

domino-logger

Logger for node.js apps used in Yandex.Mediaservices domino frontend

  • 2.1.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

domino-logger

Build Status DevDependency Status

Logger for node.js apps used in Yandex.Mediaservices domino frontend. Uses debug in development and process.stdout/stderr in production environment. Supports namespaces.

Post on Medium.com: https://medium.com/@1999/domino-logger-why-we-wrote-another-logger-for-our-node-js-app-ed11a2a8958b

Install

npm install domino-logger --save

Basic Usage

'use strict';

const dominoLogger = require('domino-logger');
const moment = require('moment');

// first, create factory for new loggers
// pass your app name to domino-logger function
const loggerFactory = dominoLogger('kinopoisk');

// second, create logger instance
// available options are:
// - emitErrors: emit errors if logger.error is called (true by default)
// - format: custom formatting function for production environment
//     invoked with req (http.incomingMessage), namespace, message and extra
// - namespace: next level namespace (log namespace is appname:nextlevel then)
// - extra: some additional object you can use in `format` function
const loggerInstance = loggerFactory({
    // for example like this
    format(req, namespace, message, extra) {
        return moment().format('YYYY-MM-DD HH:mm:ss.SSS') + '\t' +
            'pid:' + process.pid + '\t' +
            'request_id:' + req.uuid + '\t' +
            'yandex_uid:' + req.auth.yandex_uid + '\t' +
            namespace + '\t' +
            message;
    }
}).on('error', ({namespace, message, req}) => {
    // handle errors
});

FAQs

Package last updated on 13 Oct 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc