# HG changeset patch # User Sebastien Jodogne # Date 1762354607 -3600 # Node ID 5986dfd522becbcf214c296fc92058a4063bf3b1 # Parent 0b2e9ebf9b1239c67efba0cfaefd3b9abcd17289 improved log diff -r 0b2e9ebf9b12 -r 5986dfd522be Applications/Dicomizer.cpp --- 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); }