From 0a0b4661be917ef0161905929abfe7f4cebbdc61 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Mon, 16 Nov 2020 10:19:23 -0500 Subject: [PATCH] chore: remove debug log --- test/mocks/databasemock.js | 1 - 1 file changed, 1 deletion(-) diff --git a/test/mocks/databasemock.js b/test/mocks/databasemock.js index 9d4b7e5fda..f8b57517f7 100644 --- a/test/mocks/databasemock.js +++ b/test/mocks/databasemock.js @@ -118,7 +118,6 @@ before(async function () { // Parse out the relative_url and other goodies from the configured URL const urlObject = url.parse(nconf.get('url')); nconf.set('url_parsed', urlObject); - console.log('stting urlparsed'); nconf.set('base_url', urlObject.protocol + '//' + urlObject.host); nconf.set('secure', urlObject.protocol === 'https:'); nconf.set('use_port', !!urlObject.port);