diff --git a/env/development.env b/env/development.env index a77128b4..8d1e1b7a 100644 --- a/env/development.env +++ b/env/development.env @@ -1,5 +1,4 @@ NODE_ENV=development -LOG_TIMES=0 DISABLE_BACKEND_SERVICES=0 FHIR_SERVER_R2="https://r2.smarthealthit.org" FHIR_SERVER_R3="https://r3.smarthealthit.org" diff --git a/env/test.env b/env/test.env index 1d114d73..562efa86 100644 --- a/env/test.env +++ b/env/test.env @@ -1,5 +1,4 @@ NODE_ENV = test -LOG_TIMES = 0 DISABLE_BACKEND_SERVICES = 0 FHIR_SERVER_R2 = "https://r2.smarthealthit.org" FHIR_SERVER_R3 = "https://r3.smarthealthit.org" diff --git a/src/simple-proxy.js b/src/simple-proxy.js index 0be698d0..a30eb3a4 100644 --- a/src/simple-proxy.js +++ b/src/simple-proxy.js @@ -133,12 +133,6 @@ module.exports = (req, res) => { contentType && res.type(contentType); etag && res.set('ETag', etag) location && res.set('Location', location) - if (logTime) { - console.log( - ("Simple Proxy: ".bold + Url.format(fhirRequestOptions.url) + " -> ").cyan + - String((Date.now() - logTime) + "ms").yellow.bold - ); - } }); if (!isBinary) {