diff --git a/bin/tools/foamLog.db b/bin/tools/foamLog.db
index f97c8f27b389decfa105ef668a7a3f0cff2b9408..61909c092a35edd2052e630368d66c69c5ac4bb2 100644
--- a/bin/tools/foamLog.db
+++ b/bin/tools/foamLog.db
@@ -63,6 +63,6 @@ alpha1Min/Min\(alpha1\) =/Min(alpha1) =
 alpha1Max/Max\(alpha1\) =/Max(alpha1) = 
 
 # AMI
-AMIMin/AMI: Patch source sum/min = 
-AMIMax/AMI: Patch source sum/max = 
-AMIAvg/AMI: Patch source sum/average = 
+AMIMin/AMI: Patch source sum/min:
+AMIMax/AMI: Patch source sum/max:
+AMIAvg/AMI: Patch source sum/average:
diff --git a/src/meshTools/AMIInterpolation/patches/cyclicACMI/cyclicACMIPolyPatch/cyclicACMIPolyPatch.C b/src/meshTools/AMIInterpolation/patches/cyclicACMI/cyclicACMIPolyPatch/cyclicACMIPolyPatch.C
index 242f83097f8a580475a4145d75175cddc798ae06..98b7a2ca2d6014c4750307382acb59297a35ab16 100644
--- a/src/meshTools/AMIInterpolation/patches/cyclicACMI/cyclicACMIPolyPatch/cyclicACMIPolyPatch.C
+++ b/src/meshTools/AMIInterpolation/patches/cyclicACMI/cyclicACMIPolyPatch/cyclicACMIPolyPatch.C
@@ -98,7 +98,7 @@ void Foam::cyclicACMIPolyPatch::resetAMI
             const_cast<AMIPatchToPatchInterpolation&>(this->AMI());
 
         // Output some stats. AMIInterpolation will have already output the
-        // average weights ("sum(weights) min = 1 max = 1 average = 1")
+        // average weights ("sum(weights) min:1 max:1 average:1")
         {
             const scalarField& wghtsSum = AMI.srcWeightsSum();
 
diff --git a/src/meshTools/AMIInterpolation/patches/cyclicPeriodicAMI/cyclicPeriodicAMIPolyPatch/cyclicPeriodicAMIPolyPatch.C b/src/meshTools/AMIInterpolation/patches/cyclicPeriodicAMI/cyclicPeriodicAMIPolyPatch/cyclicPeriodicAMIPolyPatch.C
index 032315e09fbfe7bffe0f254f90c4700ee9ecc447..34c7680aaa7ad18db3637e1d61b309b4a0f807c3 100644
--- a/src/meshTools/AMIInterpolation/patches/cyclicPeriodicAMI/cyclicPeriodicAMIPolyPatch/cyclicPeriodicAMIPolyPatch.C
+++ b/src/meshTools/AMIInterpolation/patches/cyclicPeriodicAMI/cyclicPeriodicAMIPolyPatch/cyclicPeriodicAMIPolyPatch.C
@@ -561,15 +561,15 @@ void Foam::cyclicPeriodicAMIPolyPatch::resetAMI
             Info<< indent
                 << "AMI: Patch " << name()
                 << " sum(weights)"
-                << " min = " << gMin(srcWghtSum)
-                << " max = " << gMax(srcWghtSum)
-                << " average = " << gAverage(srcWghtSum) << nl;
+                << " min:" << gMin(srcWghtSum)
+                << " max:" << gMax(srcWghtSum)
+                << " average:" << gAverage(srcWghtSum) << nl;
             Info<< indent
                 << "AMI: Patch " << neighbPatch().name()
                 << " sum(weights)"
-                << " min = " << gMin(tgtWghtSum)
-                << " max = " << gMax(tgtWghtSum)
-                << " average = " << gAverage(tgtWghtSum) << nl;
+                << " min:" << gMin(tgtWghtSum)
+                << " max:" << gMax(tgtWghtSum)
+                << " average:" << gAverage(tgtWghtSum) << nl;
         }
     }
 }
diff --git a/src/parallel/decompose/decompose/decompositionInformation.C b/src/parallel/decompose/decompose/decompositionInformation.C
index 08f80d2cad774423df1c9696e17b66b067249d01..28a52235f1b7f5753fd28219738d4b0b4f51fa59 100644
--- a/src/parallel/decompose/decompose/decompositionInformation.C
+++ b/src/parallel/decompose/decompose/decompositionInformation.C
@@ -217,11 +217,11 @@ void Foam::decompositionInformation::printAll(Ostream& os) const
 
 // * * * * * * * * * * * * * * * Ostream Operator  * * * * * * * * * * * * * //
 
-
 Foam::Ostream& Foam::decompositionInformation::stats::print(Ostream& os) const
 {
-    os  << "max/median/min: "
-        << this->max << " / " << this->median << " / " << this->min;
+    os  << "min:" << this->min
+        << " max:" << this->max
+        << " median:" << this->median;
 
     if (this->median)
     {
@@ -233,4 +233,5 @@ Foam::Ostream& Foam::decompositionInformation::stats::print(Ostream& os) const
     return os;
 }
 
+
 // ************************************************************************* //