fix(syncing-server): logs meta for email with backup requested

This commit is contained in:
Karol Sójko
2023-12-11 10:55:16 +01:00
parent 4ab61b94a4
commit 597ff13393

View File

@@ -85,6 +85,8 @@ export class EmailBackupRequestedEventHandler implements DomainEventHandlerInter
)
}
this.logger.info(`Email with backup requested for user ${event.payload.userUuid}`)
this.logger.info('Email with backup requested for user', {
userId: event.payload.userUuid,
})
}
}