1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Pino】levelを数値ではなく文字列にする方法

Last updated at Posted at 2024-03-12

以下のようにlogger.jsに記述することでlevelを数値ではなく'error'などの文字列で出力できます。

logger.js
import pino from 'pino'

export const logger = pino({
  formatters: {
    level: (label: string) => {
      return {
        level: label,
      };
    },
  },
})

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?