diff --git a/packages/services/server/src/graphql-handler.ts b/packages/services/server/src/graphql-handler.ts index a3824f84a..1a5dee8d0 100644 --- a/packages/services/server/src/graphql-handler.ts +++ b/packages/services/server/src/graphql-handler.ts @@ -158,10 +158,10 @@ export const graphqlHandler = (options: GraphQLHandlerOptions): RouteHandlerMeth useSentryUser(), useErrorHandler(({ errors, context }): void => { for (const error of errors) { - // Only log unexpected errors. - if (isGraphQLError(error)) { - continue; - } + // // Only log unexpected errors. + // if (isGraphQLError(error)) { + // continue; + // } if (hasFastifyRequest(context)) { context.req.log.error(error);