diff --git a/backend/src/graphql/resolver/UserResolver.ts b/backend/src/graphql/resolver/UserResolver.ts index 1710bb7e9..b14a5e50d 100644 --- a/backend/src/graphql/resolver/UserResolver.ts +++ b/backend/src/graphql/resolver/UserResolver.ts @@ -801,7 +801,7 @@ export class UserResolver { } const emailContact = user.emailContact if (emailContact.deletedAt) { - throw new LogError(`The emailContact: ${email} of this User is deleted`, email) + throw new LogError('The given email contact for this user is deleted', email) } emailContact.emailResendCount++