comparison Framework/Volumes/ImageBuffer3D.cpp @ 1105:640feb146fa8 toa2019102801

Code formatting (dummyc) + log level (dummyc)
author Benjamin Golinvaux <bgo@osimis.io>
date Mon, 28 Oct 2019 11:13:48 +0100
parents 32eaf4929b08
children 2d8ab34c8c91
comparison
equal deleted inserted replaced
1101:141593f1aa88 1105:640feb146fa8
116 height_(height), 116 height_(height),
117 depth_(depth), 117 depth_(depth),
118 computeRange_(computeRange), 118 computeRange_(computeRange),
119 hasRange_(false) 119 hasRange_(false)
120 { 120 {
121 LOG(INFO) << "Created a 3D image of size " << width << "x" << height 121 LOG(TRACE) << "Created a 3D image of size " << width << "x" << height
122 << "x" << depth << " in " << Orthanc::EnumerationToString(format) 122 << "x" << depth << " in " << Orthanc::EnumerationToString(format)
123 << " (" << (GetEstimatedMemorySize() / (1024ll * 1024ll)) << "MB)"; 123 << " (" << (GetEstimatedMemorySize() / (1024ll * 1024ll)) << "MB)";
124 } 124 }
125 125
126 126