feat(logger): use logtail only in dev/prod
All checks were successful
Build and Push Docker Image / tests (push) Successful in 32s
Build and Push Docker Image / build (push) Successful in 1m31s

This commit is contained in:
Lars Hampe 2024-10-02 15:44:20 +02:00
parent dc97053d04
commit 2194bcc9ee

View File

@ -2,14 +2,13 @@ import { Logtail } from '@logtail/node'
import { LogtailTransport } from '@logtail/winston'
import winston from 'winston'
// Create a Logtail client
const logtail = new Logtail(process.env.BETTERSTACK_LOG_TOKEN as string)
// Create a Winston logger - passing in the Logtail transport
export const logger = winston.createLogger({
transports: [],
})
if (import.meta.env.NODE_ENV !== 'test') {
// Create a Logtail client
const logtail = new Logtail(process.env.BETTERSTACK_LOG_TOKEN as string)
logger.add(new LogtailTransport(logtail))
}