# HG changeset patch # User Sebastien Jodogne # Date 1689178934 -7200 # Node ID b5b9719ef1c0997249e3b6a6912c7b3dbb4637fc # Parent 77afef2cf64b1bced5eb2cd066e64719395ec586 log diff -r 77afef2cf64b -r b5b9719ef1c0 Applications/Dicomizer.cpp --- a/Applications/Dicomizer.cpp Wed Jul 12 18:06:34 2023 +0200 +++ b/Applications/Dicomizer.cpp Wed Jul 12 18:22:14 2023 +0200 @@ -1084,11 +1084,13 @@ if (!volume.HasWidth()) { volume.SetWidth(volumeWidth); + LOG(WARNING) << "Width of the imaged volume extracted using OpenSlide: " << volumeWidth << "mm"; } if (!volume.HasHeight()) { volume.SetHeight(volumeHeight); + LOG(WARNING) << "Height of the imaged volume extracted using OpenSlide: " << volumeHeight << "mm"; } }