diff --git a/src/infrastructure/decorators/is-order-by-constraint.decorator.ts b/src/infrastructure/decorators/is-order-by-constraint.decorator.ts index e93df91..4f37bfa 100644 --- a/src/infrastructure/decorators/is-order-by-constraint.decorator.ts +++ b/src/infrastructure/decorators/is-order-by-constraint.decorator.ts @@ -9,7 +9,6 @@ import { @ValidatorConstraint({ async: false }) export class IsOrderByConstraint implements ValidatorConstraintInterface { validate(orderBy: string | null, args: ValidationArguments) { - console.log(orderBy) if (!orderBy || orderBy === 'null' || orderBy === '') { return true }