Socket
Socket
Sign inDemoInstall

log4js-json-layout

Package Overview
Dependencies
1
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    log4js-json-layout

provides a slim and easy to use json-layout for log4js-node


Version published
Maintainers
1
Install size
1.40 MB
Created

Readme

Source

log4js-json-layout

NPM

provides a slim and easy to use json-layout for log4js-node (https://github.com/nomiddlename/log4js-node)

installation

npm install log4js-json-layout

usage

layout should be type 'json'

currently we support include options only, array of items is expected log object will contain these properties : ["startTime","categoryName","data","level"] source param will be added to each json object if provided

var log4js = require('log4js');
var jsonLayout = require('log4js-json-layout');

log4js.layouts.addLayout('json', jsonLayout);

appenders = [{
    type: 'console',
    messageParam : 'msg',
    layout: {
        type: 'json',
        source : 'development',
        include: ['startTime', 'categoryName']
    }
  }
];

FAQs

Last updated on 04 Sep 2016

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc