diff options
Diffstat (limited to 'server/helpers/database-utils.ts')
-rw-r--r-- | server/helpers/database-utils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/helpers/database-utils.ts b/server/helpers/database-utils.ts index f761cfb89..e174dc3e9 100644 --- a/server/helpers/database-utils.ts +++ b/server/helpers/database-utils.ts | |||
@@ -17,7 +17,7 @@ function retryTransactionWrapper (functionToRetry: (... args) => Promise<any>, o | |||
17 | ) | 17 | ) |
18 | .catch(err => { | 18 | .catch(err => { |
19 | // Do not throw the error, continue the process | 19 | // Do not throw the error, continue the process |
20 | logger.error(options.errorMessage, { error: err }) | 20 | logger.error(options.errorMessage, err) |
21 | }) | 21 | }) |
22 | } | 22 | } |
23 | 23 | ||