From 381953bbd055a43a3066c9f8e40a8d3f8e2d02b9 Mon Sep 17 00:00:00 2001 From: alban Date: Fri, 22 May 2020 21:59:06 +0200 Subject: [PATCH] [fix] dandling console.log --- index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/index.js b/index.js index 8ef46c4..82c7654 100644 --- a/index.js +++ b/index.js @@ -58,7 +58,6 @@ function requireAuthentication( req, res, next ){ app.all('*', requireAuthentication); const routes = require( "./routes"); -console.log( routes.log) app.get('/log/:id', routes.log); app.get('/health', routes.health); app.get('/search', routes.search);