HBASE-17005 Improve log message in MobFileCache (huaxiang sun)

This commit is contained in:
Jingcheng Du 2016-11-07 16:38:14 +08:00
parent a34a9adb22
commit 4ca668dd11
1 changed files with 5 additions and 1 deletions

View File

@ -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);
}
/**