From 4797c065cac01af4a2bb6e06a9a974a53cd6e1d4 Mon Sep 17 00:00:00 2001 From: Ruben Bartelink Date: Thu, 18 Apr 2019 00:48:24 +0100 Subject: [PATCH] mb --- equinox-sync/Sync/EventStoreSource.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/equinox-sync/Sync/EventStoreSource.fs b/equinox-sync/Sync/EventStoreSource.fs index 5a65dd130..d816378c1 100644 --- a/equinox-sync/Sync/EventStoreSource.fs +++ b/equinox-sync/Sync/EventStoreSource.fs @@ -146,7 +146,7 @@ let pullAll (slicesStats : SliceStatsBuffer, overallStats : OverallStats) (conn let streams = batches |> Seq.groupBy (fun b -> b.stream) |> Array.ofSeq let usedStreams, usedCats = streams.Length, streams |> Seq.map fst |> Seq.distinct |> Seq.length postBatch currentSlice.NextPosition batches - Log.Information("Read {pos,10} {pct:p1} {ft:n3}s {mb:#0.000}MB {count,4} {categories,4}c {streams,4}s {events,4}e Post {pt:n0}ms", + Log.Information("Read {pos,10} {pct:p1} {ft:n3}s {mb:,6#0.000}MB {count,4} {categories,4}c {streams,4}s {events,4}e Post {pt:n0}ms", range.Current.CommitPosition, range.PositionAsRangePercentage, (let e = sw.Elapsed in e.TotalSeconds), mb batchBytes, batchEvents, usedCats, usedStreams, batches.Length, postSw.ElapsedMilliseconds) if not (range.TryNext currentSlice.NextPosition && not once && not currentSlice.IsEndOfStream) then return currentSlice.IsEndOfStream else