remove forgotten console log

This commit is contained in:
Sylvain Briat 2023-11-06 17:31:05 +01:00
parent fef0779aaa
commit a5bb249193
1 changed files with 0 additions and 1 deletions

View File

@ -32,7 +32,6 @@ export class MatchGrpcController {
@UseInterceptors(CacheInterceptor)
@GrpcMethod('MatcherService', 'Match')
async match(data: MatchRequestDto): Promise<MatchingPaginatedResponseDto> {
console.log(data);
try {
const matchingResult: MatchingResult = await this.queryBus.execute(
new MatchQuery(data, this.routeProvider),