HBASE-17005 Improve log message in MobFileCache (huaxiang sun)
This commit is contained in:
parent
a34a9adb22
commit
4ca668dd11
|
@ -117,8 +117,12 @@ public class MobFileCache {
|
|||
}
|
||||
this.scheduleThreadPool.scheduleAtFixedRate(new EvictionThread(this), period, period,
|
||||
TimeUnit.SECONDS);
|
||||
|
||||
LOG.info("MobFileCache enabled with cacheSize=" + mobFileMaxCacheSize +
|
||||
", evictPeriods=" + period + "sec, evictRemainRatio=" + evictRemainRatio);
|
||||
} else {
|
||||
LOG.info("MobFileCache disabled");
|
||||
}
|
||||
LOG.info("MobFileCache is initialized, and the cache size is " + mobFileMaxCacheSize);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue