Socket
Socket
Sign inDemoInstall

@biut-block/biutjs-logger

Package Overview
Dependencies
0
Maintainers
5
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @biut-block/biutjs-logger

A simple logging library for BIUT-Block System


Version published
Maintainers
5
Install size
5.78 kB
Created

Readme

Source


SEC Logger

JavaScript Style Guide

https://github.com/SEC-Block/secjs-logger

SUMMARY

A simple logging library for SEC-Block

USAGE

A logger has 5 different levels of logging in a specific order:

'fatal', 'error', 'warn', 'info', 'debug' Each of these log levels has its own method on the logging instance. You can set the maximum log level on a logger at runtime.

By default, a logger writes to STDOUT, but given a writeable file path, it will log directly to a file.

Instantiation:

// standardjs style
const logger = require('./logger').createLogger() // logs to STDOUT
const logger = require('./logger').createLogger('development.log') // logs to a file

Logging:

Any of the logging methods take n arguments, which are each joined by ' '. If an argument is not a string, it is string-ified by util.inspect()

logger.info('loading an array', [1,2,3], 'now!')
// info [Sat Jun 12 2018 01:12:05 GMT-0400 (EDT)]  loading an array [ 1, 2, 3, [length]: 3 ] now!
logger.debug('this wont be logged')
// false
logger.setLevel('debug')
logger.debug('this will be logged now')
// debug [Sat Jun 12 2018 01:12:54 GMT-0400 (EDT)]  this will be logged now

Customization:

You can completely customize the look of the log by overriding the format() method on a logger.

logger.format = function(level, date, message) {
  return date.getTime().toString() + '; ' + message
};
logger.debug('message')
// 1276365362167;  message

LICENSE

MIT, see the source.

Keywords

FAQs

Last updated on 11 Jun 2019

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