diff --git a/server/routes/watchlist.ts b/server/routes/watchlist.ts index cbf165e29..b8ca0b909 100644 --- a/server/routes/watchlist.ts +++ b/server/routes/watchlist.ts @@ -28,7 +28,8 @@ watchlistRoutes.post( switch (error.constructor) { case QueryFailedError: logger.warn('Something wrong with data watchlist', { - ...req.body, + tmdbId: req.body.tmdbId, + mediaType: req.body.mediaType, label: 'Watchlist', }); return next({ status: 409, message: 'Something wrong' });