diff --git a/etesian/src/EtesianEngine.cpp b/etesian/src/EtesianEngine.cpp index 223c9e41..f189715d 100644 --- a/etesian/src/EtesianEngine.cpp +++ b/etesian/src/EtesianEngine.cpp @@ -848,7 +848,9 @@ namespace Etesian { double densityVariation = getDensityVariation(); double bloatFactor = 1.0 + std::max(spaceMargin - densityVariation, 0.0); if (bloatFactor != 1.0) { - cmess1 << " - Cells inflated by " << bloatFactor << endl; + ostringstream bf; + bf << fixed << setprecision(2) << bloatFactor << "%"; + cmess1 << ::Dots::asString( " - Coloquinte cell bloat factor ", bf.str() ) << endl; } int rowHeight = (getSliceHeight() + vpitch - 1) / vpitch;