# HG changeset patch # User Sebastien Jodogne # Date 1687869883 -7200 # Node ID cf4b4a323b26517f5490711d66eece13a509b104 # Parent c56c1037f1d1d6c25efc5cb02c509e425a9d3a49 display warning message about performance diff -r c56c1037f1d1 -r cf4b4a323b26 Plugin/Plugin.cpp --- a/Plugin/Plugin.cpp Tue Jun 27 09:16:02 2023 +0200 +++ b/Plugin/Plugin.cpp Tue Jun 27 14:44:43 2023 +0200 @@ -537,6 +537,11 @@ << "Orthanc SDK <= 1.5.6. STOW and WADO chunked transfers will be entirely stored in RAM."; #endif +#if !ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 12, 1) + LOG(WARNING) << "Performance warning in DICOMweb: The plugin was compiled against " + << "Orthanc SDK <= 1.12.0. Retrieving metadata will be slower."; +#endif + OrthancPluginSetDescription(context, "Implementation of DICOMweb (QIDO-RS, STOW-RS and WADO-RS) and WADO-URI."); try