diff --git a/lib/utils.js b/lib/utils.js index 05d08dbc7d..41fb71ec45 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -171,8 +171,6 @@ exports.matchRoutes = function (req, res) { exports.matchMdRoutes = function (req, res) { var docsPath = '/../docs/documentation/' - var filePath = path.join(__dirname, docsPath, req.params[0] + '.md') - console.log('file path is:', filePath) if (fs.existsSync(path.join(__dirname, docsPath, req.params[0] + '.md'), 'utf8')) { var doc = fs.readFileSync(path.join(__dirname, docsPath, req.params[0] + '.md'), 'utf8') var html = marked(doc)