UNPKG

gcp-logs

Version:

Package that standardizes logs for GCP, specifically for NestJS

7 lines (5 loc) 229 B
import { INestApplication } from '@nestjs/common'; import { WINSTON_MODULE_NEST_PROVIDER } from 'nest-winston'; export function initLogger(app: INestApplication): void { app.useLogger(app.get(WINSTON_MODULE_NEST_PROVIDER)); }