private void endProfile(String url) {
logger.info(url);
logger.info("local cache hits: " + (
getBusiness().getSystemService().getCache().getLocalHits()
- localHits));
DaoStat daoStat2 = getDao().getDaoStat();
logger.info("memcache hits: " + (
getBusiness().getSystemService().getCache().getCacheHits()
- cacheHits));
logger.info("dao get calls: "
+ (daoStat2.getGetCalls() - daoStat.getGetCalls())
+ " ,dao query calls: "
+ (daoStat2.getQueryCalls() - daoStat.getQueryCalls())
+ " ,entity cache hits: "
+ (daoStat2.getEntityCacheHits() - daoStat.getEntityCacheHits())
+ " ,query cache hits: "
+ (daoStat2.getQueryCacheHits() - daoStat.getQueryCacheHits())
);
}