fix(syncing-server): error log on email backup requested
This commit is contained in:
parent
f6cdb7916c
commit
a6a19a391e
1 changed files with 3 additions and 1 deletions
|
@ -48,7 +48,9 @@ export class EmailBackupRequestedEventHandler implements DomainEventHandlerInter
|
|||
})
|
||||
} catch (error) {
|
||||
this.logger.error(
|
||||
`Could not get user key params from auth service for user ${event.payload.userUuid}: ${JSON.stringify(error)}`,
|
||||
`Could not get user key params from auth service for user ${event.payload.userUuid}: ${
|
||||
(error as Error).message
|
||||
}`,
|
||||
)
|
||||
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue