UNPKG

@graphql-hive/logger-pino

Version:
18 lines (12 loc) 654 B
# @graphql-hive/logger-pino ## 1.0.0-alpha-da3ad60bd5595c273b81e55eea65bde564632356 ### Major Changes - [#946](https://github.com/graphql-hive/gateway/pull/946) [`62a4383`](https://github.com/graphql-hive/gateway/commit/62a4383db889886b4fd18ce78c8130244061d62e) Thanks [@ardatan](https://github.com/ardatan)! - New Pino integration (also helpful for Fastify integration); ```ts import { defineConfig } from '@graphql-hive/gateway'; import { createLoggerFromPino } from '@graphql-hive/logger-pino'; import pino from 'pino'; export const gatewayConfig = defineConfig({ logging: createLoggerFromPino(pino({ level: 'info' })), }); ```