From: Carl Worth <cworth@cworth.org>
Date: Wed, 27 May 2020 16:53:53 +0000 (-0700)
Subject: Remove debugging log message
X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=acc47789f59df12ee9ba2da1d05235f356aaaf1b;p=lmno-server

Remove debugging log message

This was left around from some recent work to fixup the redirect.
---

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;
   }