]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/middlewares/validators/jobs.ts
Fix filters on playlists
[github/Chocobozzz/PeerTube.git] / server / middlewares / validators / jobs.ts
index 971c2060c8ac1dfc134bbd427b9a105e694d32dd..e5008adc3650657c6488a21ff35b11e136de272f 100644 (file)
@@ -1,7 +1,7 @@
 import express from 'express'
 import { param, query } from 'express-validator'
 import { isValidJobState, isValidJobType } from '../../helpers/custom-validators/jobs'
-import { logger, loggerTagsFactory } from '../../helpers/logger'
+import { loggerTagsFactory } from '../../helpers/logger'
 import { areValidationErrors } from './shared'
 
 const lTags = loggerTagsFactory('validators', 'jobs')
@@ -16,9 +16,7 @@ const listJobsValidator = [
     .custom(isValidJobType),
 
   (req: express.Request, res: express.Response, next: express.NextFunction) => {
-    logger.debug('Checking listJobsValidator parameters.', { parameters: req.params, ...lTags() })
-
-    if (areValidationErrors(req, res)) return
+    if (areValidationErrors(req, res, lTags())) return
 
     return next()
   }