From a5bb249193f19d159ddd57f0c0167f43a58c33fa Mon Sep 17 00:00:00 2001 From: Sylvain Briat Date: Mon, 6 Nov 2023 17:31:05 +0100 Subject: [PATCH] remove forgotten console log --- .../ad/interface/grpc-controllers/match.grpc-controller.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/modules/ad/interface/grpc-controllers/match.grpc-controller.ts b/src/modules/ad/interface/grpc-controllers/match.grpc-controller.ts index 0fa7bbe..a6bf5af 100644 --- a/src/modules/ad/interface/grpc-controllers/match.grpc-controller.ts +++ b/src/modules/ad/interface/grpc-controllers/match.grpc-controller.ts @@ -32,7 +32,6 @@ export class MatchGrpcController { @UseInterceptors(CacheInterceptor) @GrpcMethod('MatcherService', 'Match') async match(data: MatchRequestDto): Promise { - console.log(data); try { const matchingResult: MatchingResult = await this.queryBus.execute( new MatchQuery(data, this.routeProvider),