feat: disable logger on testing
Some checks failed
Build and Push Docker Image / tests (push) Failing after 26s
Build and Push Docker Image / build (push) Has been skipped

This commit is contained in:
Lars Hampe 2024-10-02 15:42:18 +02:00
parent 3535b97cfa
commit dc97053d04
3 changed files with 7 additions and 2 deletions

View File

@ -23,6 +23,7 @@ export const startup = async () => {
'CLERK_WEBHOOK_SECRET',
'CLERK_SECRET_KEY',
'CLERK_PUBLISHABLE_KEY',
'BETTERSTACK_LOG_TOKEN',
]
keys.map((key) => {
if (!import.meta.env[key]) {

View File

@ -1 +1 @@
{"root":["./src/main.tsx","./src/routeTree.gen.ts","./src/vite-env.d.ts","./src/components/Layout.tsx","./src/components/Navigation.tsx","./src/components/NavigationMobile.tsx","./src/routes/__root.tsx","./src/routes/about.lazy.tsx","./src/routes/index.lazy.tsx"],"version":"5.6.2"}
{"root":["./src/main.tsx","./src/routeTree.gen.ts","./src/vite-env.d.ts","./src/components/Layout.tsx","./src/components/Navigation.tsx","./src/components/NavigationMobile.tsx","./src/routes/__root.tsx","./src/routes/index.lazy.tsx","./src/routes/changelog/index.lazy.tsx","./src/routes/user/index.lazy.tsx","./src/utils/navigation-routes.ts"],"version":"5.6.2"}

View File

@ -7,5 +7,9 @@ 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: [new LogtailTransport(logtail)],
transports: [],
})
if (import.meta.env.NODE_ENV !== 'test') {
logger.add(new LogtailTransport(logtail))
}