1.3.1 • Published 2 months ago

@sliit-foss/module-logger v1.3.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

@sliit-foss/module-logger

A modularized logger to make working with nodeJS microservices easier. This package is wrapped around winston and exposes all of its functions and properties.

Installation

# using npm
npm install @sliit-foss/module-logger

# using yarn
yarn add @sliit-foss/module-logger

Usage

# using require
const { configure, moduleLogger } = require("@sliit-foss/module-logger");

# using import
import { configure, moduleLogger } from "@sliit-foss/module-logger";

Examples

Default configuration

const logger = moduleLogger("MY-MODULE-NAME");

logger.info("This is a modularized info log");

/*
  {"correlationId":"correlation-id-from-context","level":"info","message":"[MY-MODULE-NAME] - This is a modularized info log","timestamp":"2023-02-22T16:44:53.711Z"}
*/

Custom configuration

// configure the logger at the start of the application
configure({
  console: { enabled: false },
  file: {
    enabled: true,
    options: {
      filename: "my-custom-log-file.log"
    }
  }
});

const logger = moduleLogger("MY-MODULE-NAME");

logger.info("This is a modularized info log written to a file");

/* 
  logs to my-custom-log-file.log
  {"correlationId":"correlation-id-from-context","level":"info","message":"[MY-MODULE-NAME] - This is a modularized info log written to a file","timestamp":"2023-02-22T16:44:53.711Z"}
*/

Default options which can be overridden by configure

{
  console: {
    enabled: true,
    options: {
      handleRejections: true,
      handleExceptions: true,
    },
  },
  file: {
    enabled: true,
    options: {
      filename: '%DATE%.log',
      datePattern: 'YYYY-MM-DD',
      zippedArchive: false,
      maxFiles: '7d',
      dirname: './logs',
    },
  },
  transportOverrides: [], // array of transport overrides
  globalAttributes: {}, // attributes which will be added to all logs,
  traceKey: "correlationId", // key to be used for tracing
}
1.3.1

2 months ago

1.3.0

2 months ago

1.2.5

4 months ago

1.2.4

4 months ago

1.2.0

4 months ago

1.2.3

4 months ago

1.2.2

4 months ago

1.2.1

4 months ago

1.1.6

5 months ago

1.1.5

9 months ago

1.1.4

9 months ago

1.2.0-blizzard.0

12 months ago

1.1.3

1 year ago

1.1.2

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.0.0

1 year ago

0.0.0

1 year ago