summaryrefslogtreecommitdiff
path: root/src/gc
diff options
context:
space:
mode:
authorSergey Andreenko <seandree@microsoft.com>2019-05-08 14:46:40 -0700
committerGitHub <noreply@github.com>2019-05-08 14:46:40 -0700
commit73519f3bf9011084612889079c6692dce491ef15 (patch)
tree62f6ef793e354bdedecb2198f34a0cfd7cdf552e /src/gc
parent75cde8dc8854c2f488094c2e33002c8871d4a592 (diff)
parent1dc55132deac51eeb265b086a96ee5b96d68254a (diff)
downloadcoreclr-73519f3bf9011084612889079c6692dce491ef15.tar.gz
coreclr-73519f3bf9011084612889079c6692dce491ef15.tar.bz2
coreclr-73519f3bf9011084612889079c6692dce491ef15.zip
Merge pull request #24366 from sandreenko/fixLogPrinting
Fix some small issues with stress logging.
Diffstat (limited to 'src/gc')
-rw-r--r--src/gc/gc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gc/gc.cpp b/src/gc/gc.cpp
index 4f77e1d75d..f240e73650 100644
--- a/src/gc/gc.cpp
+++ b/src/gc/gc.cpp
@@ -11004,7 +11004,7 @@ BOOL gc_heap::grow_heap_segment (heap_segment* seg, uint8_t* high_address, bool*
#endif //MARK_ARRAY
heap_segment_committed (seg) += c_size;
- STRESS_LOG1(LF_GC, LL_INFO10000, "New commit: %Ix",
+ STRESS_LOG1(LF_GC, LL_INFO10000, "New commit: %Ix\n",
(size_t)heap_segment_committed (seg));
assert (heap_segment_committed (seg) <= heap_segment_reserved (seg));