Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

simple-leveled-log-methods

ehmpathy121MIT0.4.1TypeScript support: included

a simple and opinionated logging library. plays well with aws lambda + cloudwatch.

log, logs, level, simple, filter, aws, lambda, cloudwatch, requestId

readme

simple-leveled-log-methods

a simple and opinionated logging library. plays well with aws lambda + cloudwatch.

features

  • distinguish different priorities of logs with standard levels
    • i.e., log.debug, log.info, log.warn, and log.error
  • filter which levels of log to emit
    • i.e., choose based on environment whether to emit all logs or skip some of the logs
  • utilizes console.warn and console.log under the hood
    • which ensures that the aws cloudwatch requestId is present on each log message automatically
  • formats log metadata based on environment
    • i.e., stringify in local environments to reduce visual noise
    • i.e., don't stringify in aws-lambda environment for optimal cloudwatch parsing

installation

npm install --save simple-leveled-log-methods

usage

init

// e.g., in `src/utils/log.ts
import { generateLogMethods } from 'simple-leveled-log-methods';

export const log = generateLogMethods();

use in code

import { log } from '../utils/log';

log.error(`the sky is falling and we're loosing money!`, metadata); // use `.error` when you want someone to respond immediately, even if its 4am

log.warn(`this shouldn't be happening and should be looked at asap`, metadata); // use `.warn` when you want someone to look at it asap, but not wake up in the middle of the night

log.info(`we either want to or should keep track of this`, metadata); // use `.info` for anything we may be interested in knowing about

log.debug(`this will help debug if things go wrong`, metadata); // use this for any information that could help debug when things go wrong (e.g., request/response data)

changelog

Changelog

0.4.1 (2024-07-27)

Bug Fixes

  • practs: bump practs to latest best (#33) (0b7b531)

0.4.0 (2024-04-27)

Features

  • env: support LOG_DEBUG=true as an alias for LOG_LEVEL=debug (#31) (28d3b94)

0.3.0 (2022-10-27)

Features

  • environments: support web-browser as an environment for ideal devtools console logs (#23) (a5afc45)

0.2.2 (2021-12-16)

Bug Fixes

  • lambda: ensure that lambda log messages are stringified for ideal cloudwatch parsing (#18) (9b5f87d)

0.2.1 (2021-12-13)

Bug Fixes

  • contract: explicit support for manual definition of minimalLogLevel (#16) (143ae0d)

0.2.0 (2021-12-13)

Features

  • environments: add better support for aws-lambda environment (64e06ee)