Skip to content

Commit

Permalink
Clean up #51
Browse files Browse the repository at this point in the history
  • Loading branch information
vlad-ignatov committed Jun 15, 2021
1 parent 57d4d61 commit 89224f8
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion env/development.env
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
1 change: 0 additions & 1 deletion env/test.env
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 0 additions & 6 deletions src/simple-proxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 89224f8

Please sign in to comment.