--- old/src/hotspot/share/gc/shenandoah/shenandoahHeapRegion.cpp 2020-05-26 09:44:30.776157522 +0200 +++ new/src/hotspot/share/gc/shenandoah/shenandoahHeapRegion.cpp 2020-05-26 09:44:30.464157936 +0200 @@ -609,13 +609,6 @@ guarantee(MaxTLABSizeBytes == 0, "we should only set it once"); MaxTLABSizeBytes = MaxTLABSizeWords * HeapWordSize; assert (MaxTLABSizeBytes > MinTLABSize, "should be larger"); - - log_info(gc, init)("Regions: " SIZE_FORMAT " x " SIZE_FORMAT "%s", - RegionCount, byte_size_in_proper_unit(RegionSizeBytes), proper_unit_for_byte_size(RegionSizeBytes)); - log_info(gc, init)("Humongous object threshold: " SIZE_FORMAT "%s", - byte_size_in_proper_unit(HumongousThresholdBytes), proper_unit_for_byte_size(HumongousThresholdBytes)); - log_info(gc, init)("Max TLAB size: " SIZE_FORMAT "%s", - byte_size_in_proper_unit(MaxTLABSizeBytes), proper_unit_for_byte_size(MaxTLABSizeBytes)); } void ShenandoahHeapRegion::do_commit() {