Mercurial > hg > orthanc-wsi
changeset 406:5986dfd522be
improved log
| author | Sebastien Jodogne <s.jodogne@gmail.com> |
|---|---|
| date | Wed, 05 Nov 2025 15:56:47 +0100 |
| parents | 0b2e9ebf9b12 |
| children | 5cc4b10fa1d8 |
| files | Applications/Dicomizer.cpp |
| diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/Applications/Dicomizer.cpp Wed Nov 05 15:25:25 2025 +0100 +++ b/Applications/Dicomizer.cpp Wed Nov 05 15:56:47 2025 +0100 @@ -1352,9 +1352,9 @@ if (!volume.HasWidth() && !volume.HasHeight()) { - LOG(WARNING) << "Unknown imaged volume size, use the --" << OPTION_IMAGED_WIDTH << " and the --" - << OPTION_IMAGED_HEIGHT << " options to fill the (0048,0001) and (0048,0002) DICOM tags, " - << "assuming an imaged width of 15mm"; + LOG(WARNING) << "Unknown imaged volume size, assuming an imaged width of 15mm: Use the --" + << OPTION_IMAGED_WIDTH << " and the --" << OPTION_IMAGED_HEIGHT + << " options to properly fill the (0048,0001) and (0048,0002) DICOM tags"; volume.SetWidth(15); }
