From 951511228a9d32e4dada9e77eb9d9eae81209b73 Mon Sep 17 00:00:00 2001 From: Ly Tuan Kiet Date: Sun, 8 Dec 2024 21:56:57 +0700 Subject: [PATCH] chore: clean up GraphQL module request logging - Removed unnecessary logging of session ID in the GraphQL module to streamline request handling. - Maintained existing functionality while improving code clarity and reducing potential noise in logs. --- src/Graphql/graphql.module.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Graphql/graphql.module.ts b/src/Graphql/graphql.module.ts index a6eafa4..4b1e3a5 100644 --- a/src/Graphql/graphql.module.ts +++ b/src/Graphql/graphql.module.ts @@ -119,8 +119,6 @@ import { GraphqlService } from './graphql.service' } // @ts-expect-error: Request is not typed ctx.extra.request.headers['x-session-id'] = ctx.connectionParams['x-session-id'] - // @ts-expect-error: Request is not typed - Logger.log(ctx.extra.request.headers['x-session-id'], 'Session ID') }, }, },