Code Monkey home page Code Monkey logo

loke-logger's Introduction

LOKE Logger

NPM Version Build Status

A multi-target logger tailored for LOKE Group and based around LOKE standards.

Currently supports console output and syslog.

Overview

In version 3.x the api is a subset of console

it includes .debug(), .log(), .info(), .warn() and .error().

in addition is a withPrefix method that creates a logger child logger with a prefix;

const logger = require("@loke/logger").create();

logger.error("Lorem ipsum");
logger.warn("dolor sit amet consectetur");

const httpLogger = logger.withPrefix("HTTP");

httpLogger.info("eiusmod tempor incididunt ut");
httpLogger.debug("labore et dolore magna aliqua");

create() Options

There are a number of options when configuring the logger;

showDebug

Type: boolean
Default: false when NODE_ENV=production, otherwise true

Whether or not debug level logs should be emitted.

syslog

Type: boolean
Default: false

This option adds syslog udp messages to the output streams, console messages will still be emitted.

systemdPrefix

Type: boolean
Default: true when JOURNAL_STREAM set, otherwise false

This option prefixes stdout with systemd's severity syntax

metricsRegistry

Type: Object

A prom-client register to add metrics to.

const { register } = require("prom-client");
const logger = require("@loke/logger").create({
  metricsRegistry: register,
});

logger.error("Lorem ipsum");

This adds the metric log_messages_total with the labels prefix and severity.

loke-logger's People

Contributors

aantthony avatar denwilliams avatar smithamax avatar

Watchers

 avatar  avatar  avatar  avatar  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.