summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--app.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/app.js b/app.js
index 8a8b2060..b99a8e8b 100644
--- a/app.js
+++ b/app.js
@@ -153,7 +153,6 @@ passport.deserializeUser(function (id, done) {
app.use(function(req, res, next) {
if ("GET" == req.method && req.path.substr(-1) == '/' && req.path.length > 1) {
var query = req.url.slice(req.path.length);
- console.log(config.serverurl + req.path.slice(0, -1) + query);
res.redirect(301, config.serverurl + req.path.slice(0, -1) + query);
} else {
next();