diff --git a/server/middlewares/activitypub.ts b/server/middlewares/activitypub.ts index c6d8466ac..c906e785c 100644 --- a/server/middlewares/activitypub.ts +++ b/server/middlewares/activitypub.ts @@ -23,7 +23,7 @@ async function checkSignature (req: Request, res: Response, next: NextFunction) return next() } catch (err) { - logger.error('Error in ActivityPub signature checker.', err) + logger.warn('Error in ActivityPub signature checker.', err) return res.sendStatus(403) } }