1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 02:39:33 +02:00

Fix error logging

This commit is contained in:
Chocobozzz 2017-07-07 18:26:12 +02:00
parent 709756b8e1
commit ad0997adfb
21 changed files with 49 additions and 49 deletions

View file

@ -126,7 +126,7 @@ function removeUser (req: express.Request, res: express.Response, next: express.
.then(user => user.destroy())
.then(() => res.sendStatus(204))
.catch(err => {
logger.error('Errors when removed the user.', { error: err })
logger.error('Errors when removed the user.', err)
return next(err)
})
}