# HG changeset patch # User Sebastien Jodogne # Date 1754817357 -7200 # Node ID 2059b5216851652b448b159672e4bf2d274f9aeb # Parent 064f60ba180e9189140b974c2471c2187326e012 log the version of the orthanc SDK diff -r 064f60ba180e -r 2059b5216851 Plugin/Plugin.cpp --- a/Plugin/Plugin.cpp Sat Aug 09 10:12:46 2025 +0200 +++ b/Plugin/Plugin.cpp Sun Aug 10 11:15:57 2025 +0200 @@ -456,6 +456,15 @@ SetPluginDescription("Java plugin for Orthanc"); + { + char info[1024]; + sprintf(info, "Version of the Orthanc SDK in use by the Java plugin: %d.%d.%d", + ORTHANC_PLUGINS_MINIMAL_MAJOR_NUMBER, + ORTHANC_PLUGINS_MINIMAL_MINOR_NUMBER, + ORTHANC_PLUGINS_MINIMAL_REVISION_NUMBER); + OrthancPluginLogWarning(context, info); + } + try { {