changeset 730:ff400f3cfc99

merge
author Alain Mazy <am@orthanc.team>
date Mon, 24 Nov 2025 20:03:42 +0100
parents 8e01b6879cdc (current diff) 2bd27a266937 (diff)
children f72e8d37db77 06e580b0da0e
files NEWS
diffstat 2 files changed, 6 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/NEWS	Mon Nov 24 20:03:30 2025 +0100
+++ b/NEWS	Mon Nov 24 20:03:42 2025 +0100
@@ -18,7 +18,8 @@
   only showing the time required to execute a WADO-RS query.  For example:
   WADO-RS: elapsed: 26106623 us, rate: 14.86 instances/s, 155.23Mbps
 * Fix false errors logs generated e.g when OHIF requests the /dicom-web/studies/../metadata route:
-  "dicom-web:/Configuration.cpp:643] Unsupported return MIME type: application/dicom+json, multipart/related; type=application/octet-stream; transfer-syntax=*, will return DICOM+JSON"
+  "dicom-web:/Configuration.cpp:643] Unsupported return MIME type: application/dicom+json,
+  multipart/related; type=application/octet-stream; transfer-syntax=*, will return DICOM+JSON"
 
 
 Version 1.20 (2025-05-12)
--- a/Plugin/Plugin.cpp	Mon Nov 24 20:03:30 2025 +0100
+++ b/Plugin/Plugin.cpp	Mon Nov 24 20:03:42 2025 +0100
@@ -747,7 +747,10 @@
         std::string publicUrlRoot = OrthancPlugins::Configuration::GetPublicRoot();
         LOG(WARNING) << "DICOMweb public root: " << publicUrlRoot;
 
-        LOG(WARNING) << "The DICOMWeb plugin will use " << (OrthancPlugins::Configuration::GetWadoRsLoaderThreadsCount() == 0 ? 1 : OrthancPlugins::Configuration::GetWadoRsLoaderThreadsCount()) << " threads to load DICOM files for WADO-RS queries";
+        LOG(WARNING) << "The DICOMweb plugin will use "
+                     << (OrthancPlugins::Configuration::GetWadoRsLoaderThreadsCount() == 0 ? 1 :
+                         OrthancPlugins::Configuration::GetWadoRsLoaderThreadsCount())
+                     << " threads to load DICOM files for WADO-RS queries";
       }
       else
       {