|
@@ -81,10 +81,12 @@ class BlocksMap {
|
|
|
final int exponent = e2 < 0? 0: e2 > 30? 30: e2;
|
|
|
final int c = 1 << exponent;
|
|
|
|
|
|
- LightWeightGSet.LOG.info("VM type = " + vmBit + "-bit");
|
|
|
- LightWeightGSet.LOG.info("2% max memory = " + twoPC/(1 << 20) + " MB");
|
|
|
- LightWeightGSet.LOG.info("capacity = 2^" + exponent
|
|
|
- + " = " + c + " entries");
|
|
|
+ if (LightWeightGSet.LOG.isDebugEnabled()) {
|
|
|
+ LightWeightGSet.LOG.debug("VM type = " + vmBit + "-bit");
|
|
|
+ LightWeightGSet.LOG.debug("2% max memory = " + twoPC/(1 << 20) + " MB");
|
|
|
+ LightWeightGSet.LOG.debug("capacity = 2^" + exponent
|
|
|
+ + " = " + c + " entries");
|
|
|
+ }
|
|
|
return c;
|
|
|
}
|
|
|
|