From a85d530384761a0af833caac9b38b9834517c9fa Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 17 Aug 2022 14:58:40 +0200 Subject: Remove unnecessary logs --- server/middlewares/validators/videos/video-channel-sync.ts | 3 --- 1 file changed, 3 deletions(-) (limited to 'server/middlewares/validators/videos/video-channel-sync.ts') diff --git a/server/middlewares/validators/videos/video-channel-sync.ts b/server/middlewares/validators/videos/video-channel-sync.ts index 18d8d74d2..7e5b12471 100644 --- a/server/middlewares/validators/videos/video-channel-sync.ts +++ b/server/middlewares/validators/videos/video-channel-sync.ts @@ -1,7 +1,6 @@ import * as express from 'express' import { body, param } from 'express-validator' import { isUrlValid } from '@server/helpers/custom-validators/activitypub/misc' -import { logger } from '@server/helpers/logger' import { CONFIG } from '@server/initializers/config' import { VideoChannelSyncModel } from '@server/models/video/video-channel-sync' import { HttpStatusCode, VideoChannelSyncCreate } from '@shared/models' @@ -27,8 +26,6 @@ export const videoChannelSyncValidator = [ .isInt(), async (req: express.Request, res: express.Response, next: express.NextFunction) => { - logger.debug('Checking videoChannelSync parameters', { parameters: req.body }) - if (areValidationErrors(req, res)) return const body: VideoChannelSyncCreate = req.body -- cgit v1.2.3