diff --git a/src/runtime/mgcsweep.go b/src/runtime/mgcsweep.go index d6d91d2021..31d1a80183 100644 --- a/src/runtime/mgcsweep.go +++ b/src/runtime/mgcsweep.go @@ -96,7 +96,7 @@ func sweepone() uintptr { mheap_.sweepdone = 1 _g_.m.locks-- if debug.gcpacertrace > 0 && idx == uint32(len(work.spans)) { - print("pacer: sweep done at heap size ", memstats.heap_live>>20, "MB; allocated ", mheap_.spanBytesAlloc>>20, "MB of spans; swept ", mheap_.pagesSwept, " pages\n") + print("pacer: sweep done at heap size ", memstats.heap_live>>20, "MB; allocated ", mheap_.spanBytesAlloc>>20, "MB of spans; swept ", mheap_.pagesSwept, " pages at ", mheap_.sweepPagesPerByte, " pages/byte\n") } return ^uintptr(0) }