Socket
Socket
Sign inDemoInstall

log4js-json-layout

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

log4js-json-layout

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


Version published
Weekly downloads
6.9K
decreased by-2.4%
Maintainers
1
Weekly downloads
 
Created
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',
    layout: {
        type: 'json',
        source : 'development',
        include: ['startTime', 'categoryName']
    }
  }
];

FAQs

Package last updated on 16 Aug 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