diff --git a/Packages/ohif-viewerbase/client/components/viewer/studyTimepointBrowser/studyTimepointBrowser.js b/Packages/ohif-viewerbase/client/components/viewer/studyTimepointBrowser/studyTimepointBrowser.js index fe03db7d3..e10416f86 100644 --- a/Packages/ohif-viewerbase/client/components/viewer/studyTimepointBrowser/studyTimepointBrowser.js +++ b/Packages/ohif-viewerbase/client/components/viewer/studyTimepointBrowser/studyTimepointBrowser.js @@ -30,7 +30,7 @@ Template.studyTimepointBrowser.onCreated(() => { return timepoint.studyInstanceUids.map(studyInstanceUid => { const query = { patientId: timepoint.patientId, - studyInstanceUid: studyInstanceUid + studyInstanceUid }; const loadedStudy = OHIF.viewer.Studies.findBy(query); @@ -40,7 +40,7 @@ Template.studyTimepointBrowser.onCreated(() => { const notYetLoaded = OHIF.studylist.collections.Studies.findOne(query); if (!notYetLoaded) { - throw new OHIFError(`No study data available for Study: ${studyInstanceUid}`); + OHIF.log.info(`No study data available for Study: ${studyInstanceUid}`); } return notYetLoaded; diff --git a/Packages/ohif-wadoproxy/server/routes.js b/Packages/ohif-wadoproxy/server/routes.js index f802ef28b..4fca995ef 100755 --- a/Packages/ohif-wadoproxy/server/routes.js +++ b/Packages/ohif-wadoproxy/server/routes.js @@ -121,7 +121,6 @@ Router.route(Settings.uri.replace(OHIF.utils.absoluteUrl(), ''), function() { // Use Node's HTTP API to send a request to the PACS const proxyRequest = requester(options, proxyResponse => { - console.log(JSON.stringify(proxyResponse, null, 2)); // When we receive data from the PACS, stream it as the // response to the original request. // console.log(`Got response: ${proxyResponse.statusCode}`);