# HG changeset patch # User Alain Mazy # Date 1764011022 -3600 # Node ID ff400f3cfc992c110ee7d5a6aaf086f2615b0745 # Parent 8e01b6879cdc7114ee7de2ab9c8c82424e7f32e5# Parent 2bd27a2669370024e47da3a09a12b7c2dc88170c merge diff -r 8e01b6879cdc -r ff400f3cfc99 NEWS --- 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) diff -r 8e01b6879cdc -r ff400f3cfc99 Plugin/Plugin.cpp --- 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 {