Skip to content

Commit fc750d3

Browse files
committed
fix format string
1 parent 13f2513 commit fc750d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fsharp/vs/Reactor.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ module internal Reactor =
173173
Debug.WriteLine("Reactor: --> start background, remaining {0}, mem {1}, gc2 {2}", inbox.CurrentQueueLength, GC.GetTotalMemory(false)/1000000L, GC.CollectionCount(2))
174174
HandleStartBackgroundOp inbox build state
175175
| Step ->
176-
Debug.WriteLine("Reactor: --> background step, remaining {0}, mem {1}, gc2 {2}}", inbox.CurrentQueueLength, GC.GetTotalMemory(false)/1000000L, GC.CollectionCount(2))
176+
Debug.WriteLine("Reactor: --> background step, remaining {0}, mem {1}, gc2 {2}", inbox.CurrentQueueLength, GC.GetTotalMemory(false)/1000000L, GC.CollectionCount(2))
177177
let time = System.DateTime.Now
178178
let res = HandleStep inbox state
179179
let span = System.DateTime.Now - time

0 commit comments

Comments
 (0)