diff options
author | Chocobozzz <me@florianbigard.com> | 2018-03-26 15:54:13 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-03-26 16:04:14 +0200 |
commit | d5b7d9110dd637a7f67ce9e430145314812a8df1 (patch) | |
tree | d019ef5fe68b14d7e5ad11953b6c1f4811669ce6 /server/middlewares/validators/videos.ts | |
parent | 0dcf9a14be3f8668fe5ee65cf0365d457b4d1499 (diff) | |
download | PeerTube-d5b7d9110dd637a7f67ce9e430145314812a8df1.tar.gz PeerTube-d5b7d9110dd637a7f67ce9e430145314812a8df1.tar.zst PeerTube-d5b7d9110dd637a7f67ce9e430145314812a8df1.zip |
Fix error logging
Diffstat (limited to 'server/middlewares/validators/videos.ts')
-rw-r--r-- | server/middlewares/validators/videos.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/middlewares/validators/videos.ts b/server/middlewares/validators/videos.ts index 1dc8429c8..e3543ef93 100644 --- a/server/middlewares/validators/videos.ts +++ b/server/middlewares/validators/videos.ts | |||
@@ -86,7 +86,7 @@ const videosAddValidator = [ | |||
86 | try { | 86 | try { |
87 | duration = await getDurationFromVideoFile(videoFile.path) | 87 | duration = await getDurationFromVideoFile(videoFile.path) |
88 | } catch (err) { | 88 | } catch (err) { |
89 | logger.error('Invalid input file in videosAddValidator.', err) | 89 | logger.error('Invalid input file in videosAddValidator.', { err }) |
90 | res.status(400) | 90 | res.status(400) |
91 | .json({ error: 'Invalid input file.' }) | 91 | .json({ error: 'Invalid input file.' }) |
92 | .end() | 92 | .end() |