X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fmiddlewares%2Fvalidators%2Fwebfinger.ts;h=dcfba99fa84551bddaf5c256c7be6c154de3b7ea;hb=2c015b54192f2080f756c424173bac2bd53e7ca9;hp=4c176f1626d7688e86bfe21556c3e1121877825a;hpb=396f6f0140b0f76162e2378fd5a61e2f888673ed;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/middlewares/validators/webfinger.ts b/server/middlewares/validators/webfinger.ts index 4c176f162..dcfba99fa 100644 --- a/server/middlewares/validators/webfinger.ts +++ b/server/middlewares/validators/webfinger.ts @@ -3,7 +3,6 @@ import { query } from 'express-validator' import { HttpStatusCode } from '../../../shared/models/http/http-error-codes' import { isWebfingerLocalResourceValid } from '../../helpers/custom-validators/webfinger' import { getHostWithPort } from '../../helpers/express-utils' -import { logger } from '../../helpers/logger' import { ActorModel } from '../../models/actor/actor' import { areValidationErrors } from './shared' @@ -12,8 +11,6 @@ const webfingerValidator = [ .custom(isWebfingerLocalResourceValid), async (req: express.Request, res: express.Response, next: express.NextFunction) => { - logger.debug('Checking webfinger parameters', { parameters: req.query }) - if (areValidationErrors(req, res)) return // Remove 'acct:' from the beginning of the string