From 9806d89f15b3aa185bb6ffff78e03acfa5c2597b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Wed, 12 Apr 2023 09:48:17 -0400 Subject: [PATCH] refactor: remove log, to much noise --- src/routes/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/routes/index.js b/src/routes/index.js index bf7ac2fa18..9d25006d39 100644 --- a/src/routes/index.js +++ b/src/routes/index.js @@ -189,7 +189,6 @@ function addCoreRoutes(app, router, middleware, mounts) { res.redirect(`${relativePath}/assets/uploads${req.path}?${meta.config['cache-buster']}`); }); app.use(`${relativePath}/plugins`, (req, res) => { - winston.warn(`${chalk.bold.red('[deprecation]')} The \`/plugins\` shorthand prefix is deprecated, prefix with \`/assets/plugins\` instead (path: ${req.path})`); res.redirect(`${relativePath}/assets/plugins${req.path}${req._parsedUrl.search || ''}`); });