Little reformatting in logging epsilon-gc-branch
authorshade
Thu, 31 May 2018 16:09:17 +0200
branchepsilon-gc-branch
changeset 56666 80185413d7fd
parent 56642 224bfdcc6457
child 56667 d999bdb8173c
Little reformatting in logging
src/hotspot/share/gc/epsilon/epsilonHeap.cpp
--- a/src/hotspot/share/gc/epsilon/epsilonHeap.cpp	Thu May 31 15:44:47 2018 +0200
+++ b/src/hotspot/share/gc/epsilon/epsilonHeap.cpp	Thu May 31 16:09:17 2018 +0200
@@ -160,8 +160,10 @@
     if ((used - last >= _step_heap_print) && Atomic::cmpxchg(used, &_last_heap_print, last) == last) {
       log_info(gc)("Heap: " SIZE_FORMAT "M reserved, " SIZE_FORMAT "M (%.2f%%) committed, " SIZE_FORMAT "M (%.2f%%) used",
                    max_capacity() / M,
-                   capacity() / M, capacity() * 100.0 / max_capacity(),
-                   used / M, used * 100.0 / max_capacity());
+                   capacity() / M,
+                   capacity() * 100.0 / max_capacity(),
+                   used / M,
+                   used * 100.0 / max_capacity());
     }
   }