Code Monkey home page Code Monkey logo

direct-logger's Introduction

direct-logger

Logger call API is interoperable with pino logger.

Features:

  • Synchronous output (great for cli's, browser and tools)
  • Levels (built-in and customizable)
  • Formatting (built-in and customizable)
  • direct-logger is dependency free (formatters are not)
  • Always captures stack trace on error logs
  • Tiny filesize
  • The cli formatter ๐Ÿš€

Install

$ yarn add direct-logger

Usage

const { Logger } = require('direct-logger')
const logger = Logger()

logger.error(new Error('My error message'))
// Thu Apr 16 2015 22:05:27 GMT-0500 (CDT) [error] - {"msg":"Error: My error message\n<STACK TRACE>"}

logger.info('Something happened', {
  foo: 'info about what happened'
})
// Thu Apr 16 2015 22:05:27 GMT-0500 (CDT) [info] - {"msg":"Something happened","foo":"info about what happened"}

Log Levels

Each log level can be directed to a different output stream or disabled entirely. The default levels are as follows:

  • fatal
  • error
  • warn (default)
  • info
  • debug
  • trace

Constants are available for setting and referencing the levels and their streams. These constants are the all uppercase version of the level. Here is an example of setting the log level:

const logger = Logger({
  level: Logger.DEBUG
})

logger.debug('Foo')
// Thu Apr 16 2015 22:05:27 GMT-0500 (CDT) [debug] - {"msg":"Foo"}

Customize Levels

You can fully customize the levels for your purposes. For example, here we implement pino compatible levels:

const log = Logger({
  level: [ 'trace', 'debug', 'info', 'warn', 'error', 'fatal' ]
})

log.trace('Example trace log')

Log Formatting

direct-logger supports formatting via formatter functions. The default formatter outputs a timestamp, the log level and the messages formatted as json. But you can provide a custom formatter function with the formatter options. Formatter functions take three parameters: date, level, data. Say we want to output the log message with a color based on the level:

const Logger = require('direct-logger')
const chalk = require('chalk')

const logger = Logger({
  formatter: (date, level, data) => {
    var color
    switch (Logger.levels.indexOf(level)) {
      case Logger.FATAL:
      case Logger.ERROR:
        color = chalk.red
        break
      case Logger.WARN:
        color = chalk.yellow
        break
      case Logger.INFO:
      case Logger.DEBUG:
        color = chalk.white
        break
    }
    return color(data.msg)
  }
})

There are a few built-in in formatters:

  • default: Outputs date, level and json
  • cli: Outputs the message and json data, colorized and formatted
  • bunyan: Compatible format to bunyan
  • browser: Relies on console.log, so just returns the data

For these built-in formatters can specify the string name of the formatter for built-in formatters:

const log = Logger({
  formatter: 'cli'
})

To use the cli formatter you can require it and pass the formatter options:

const log = Logger({
  formatter: require('direct-logger/formatters/cli')
})

Output Streams

You can output each level to it's own stream. The method is simple, just pass an array of streams corresponding to each level as the streams option. The simplest way is to just map over Logger.levels, this is how we set the defaults:

Logger({
  streams: Logger.levels.map(function (level, i) {
    return i > Logger.WARN ? process.stdin : process.stderr
  })
})

The most useful reason to specify an output stream to to redirect logs to files. Here is an example of how to do that:

const logfile = fs.createWriteStream('./logs/stdout.log', {
  flags: 'a',
  encoding: 'utf8'
})

Logger({
  streams: Logger.levels.map(() => logfile)
})

Redact secrets

const logger = Logger({
  secrets: ["1234"],
  secretsHideCharsCount: false, // default false
  secretsStringSubstition: "***", // used when secretsHideCharsCount is true
  secretsRepeatCharSubstition: "*", // used when secretsHideCharsCount is false
})

logger.info("secret is 123454678") // output "secret is ****5678"

logger.addSecret("5678")
logger.secretsHideCharsCount = true
logger.info("secret is 123454678") // output "secret is ***"

logger.deleteSecret("1234")
logger.info("secret is 123454678") // output "secret is 1234***"

const hasSecret = logger.hasSecret("54678") // hasSecret === true

Arguments order

Arguments orders are reversible.

// classical
logger.debug("Hello world !", { foo: "bar" })

// pino compatible
logger.debug({ foo: "bar" }, "Hello world !")

// string message can be replaced by object having a `toString` method
logger.debug({ foo: "bar" }, new Error("Here is a message"))
logger.debug(new Error("Here is another message"), { foo: "bar" })

Set Level

logger.setLevel("warn")
logger.minLevel("debug")
logger.maxLevel("info")

Contributing:

We welcome contributions! If you encounter a bug or have a feature suggestion, please open an issue. To contribute code, simply fork the repository and submit a pull request.

This repository is mirrored on both GitHub and Codeberg. Contributions can be made on either platform, as the repositories are synchronized bidirectionally.

For more information:

direct-logger's People

Contributors

devthejo avatar wesleytodd avatar

Stargazers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.