mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-03-06 17:59:39 +00:00
remove logging that doesn't belong
This commit is contained in:
parent
d43a383f10
commit
626f9a7281
@ -724,8 +724,6 @@ public void queryExecuted(String hql, int rows, long time) {
|
||||
|
||||
@Override
|
||||
public void queryCacheHit(String hql, String regionName) {
|
||||
log.tracef( "Statistics#queryCacheHit( `%s`, `%s` )", hql, regionName );
|
||||
|
||||
queryCacheHitCount.increment();
|
||||
|
||||
getQueryRegionStats( regionName ).incrementHitCount();
|
||||
@ -737,8 +735,6 @@ public void queryCacheHit(String hql, String regionName) {
|
||||
|
||||
@Override
|
||||
public void queryCacheMiss(String hql, String regionName) {
|
||||
log.tracef( "Statistics#queryCacheMiss( `%s`, `%s` )", hql, regionName );
|
||||
|
||||
queryCacheMissCount.increment();
|
||||
|
||||
getQueryRegionStats( regionName ).incrementMissCount();
|
||||
@ -750,8 +746,6 @@ public void queryCacheMiss(String hql, String regionName) {
|
||||
|
||||
@Override
|
||||
public void queryCachePut(String hql, String regionName) {
|
||||
log.tracef( "Statistics#queryCachePut( `%s`, `%s` )", hql, regionName );
|
||||
|
||||
queryCachePutCount.increment();
|
||||
|
||||
getQueryRegionStats( regionName ).incrementPutCount();
|
||||
|
Loading…
x
Reference in New Issue
Block a user