From acc47789f59df12ee9ba2da1d05235f356aaaf1b Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Wed, 27 May 2020 09:53:53 -0700 Subject: [PATCH] Remove debugging log message This was left around from some recent work to fixup the redirect. --- lmno.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lmno.js b/lmno.js index d818cd1..7c374ef 100644 --- a/lmno.js +++ b/lmno.js @@ -155,7 +155,6 @@ app.use('/:engine([^/]+)/:game_id([a-zA-Z0-9]{4})', (request, response, next) => const old_path = new RegExp(`/${engine}/${game_id}/?`); const new_path = `/${engine}/${canon_id}/`; const new_url = request.originalUrl.replace(old_path, new_path); - console.log("Redirecting from " + request.originalUrl + " to " + new_url); response.redirect(301, new_url); return; } -- 2.43.0