remove logging that doesn't belong
This commit is contained in:
parent
d43a383f10
commit
626f9a7281
|
@ -724,8 +724,6 @@ public class StatisticsImpl implements StatisticsImplementor, Service {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void queryCacheHit(String hql, String regionName) {
|
public void queryCacheHit(String hql, String regionName) {
|
||||||
log.tracef( "Statistics#queryCacheHit( `%s`, `%s` )", hql, regionName );
|
|
||||||
|
|
||||||
queryCacheHitCount.increment();
|
queryCacheHitCount.increment();
|
||||||
|
|
||||||
getQueryRegionStats( regionName ).incrementHitCount();
|
getQueryRegionStats( regionName ).incrementHitCount();
|
||||||
|
@ -737,8 +735,6 @@ public class StatisticsImpl implements StatisticsImplementor, Service {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void queryCacheMiss(String hql, String regionName) {
|
public void queryCacheMiss(String hql, String regionName) {
|
||||||
log.tracef( "Statistics#queryCacheMiss( `%s`, `%s` )", hql, regionName );
|
|
||||||
|
|
||||||
queryCacheMissCount.increment();
|
queryCacheMissCount.increment();
|
||||||
|
|
||||||
getQueryRegionStats( regionName ).incrementMissCount();
|
getQueryRegionStats( regionName ).incrementMissCount();
|
||||||
|
@ -750,8 +746,6 @@ public class StatisticsImpl implements StatisticsImplementor, Service {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void queryCachePut(String hql, String regionName) {
|
public void queryCachePut(String hql, String regionName) {
|
||||||
log.tracef( "Statistics#queryCachePut( `%s`, `%s` )", hql, regionName );
|
|
||||||
|
|
||||||
queryCachePutCount.increment();
|
queryCachePutCount.increment();
|
||||||
|
|
||||||
getQueryRegionStats( regionName ).incrementPutCount();
|
getQueryRegionStats( regionName ).incrementPutCount();
|
||||||
|
|
Loading…
Reference in New Issue