1.1.0 • Published 12 months ago

@golem-sdk/pino-logger v1.1.0

Weekly downloads
-
License
LGPL-3.0
Repository
github
Last release
12 months ago

Pino based logging utility for @golem-sdk

What is @golem-sdk/pino-logger

This library is designed for use with @golem-sdk/golem-js based libraries and applications. While @golem-sdk/golem-js provides built in logging capabilities, you can use @golem-sdk/pino-logger as an extension to your workflow to

Features

This library exposes two implementations of the Logger interface from @golem-sdk/golem-js:

  • JSON output logging (pino)
  • Pretty formatted logging (pino-pretty)
  • Support for forcing certain log level by setting GOLEM_PINO_LOG_LEVEL="debug" - usefully when you want to control the logging done by this library without changing the application using it.

Installation

@golem-sdk/pino-logger is available as a NPM package. You can install it with:

npm install @golem-sdk/pino-logger

Usage

In your @golem-sdk/golem-js based application, you can use in all the places where the Logger instance is accepted:

import { pinoPrettyLogger } from "@golem-sdk/pino-logger";

const logger = pinoPrettyLogger({
  level: "debug",
});

Building

The library is developed using TypeScript and can be built with:

npm run build

See also

1.0.2

1 year ago

1.1.0

12 months ago

1.0.3

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago