hi ,
i have tried changing the log4j.properties in the classPath ,
i have tried it by adding to the ..server\default\conf\log4j.xml :
Code:
<category name="org.hibernate">
<priority value="ERROR"/>
</category>
<category name="org.hibernate.cache.ReadWriteCache">
<priority value="ERROR"/>
</category>
<category name="org.hibernate.cache.EhCacheProvider">
<priority value="ERROR"/>
</category>
<category name="org.hibernate.engine.StatefulPersistenceContext.ProxyWarnLog">
<priority value="ERROR"/>
</category>
<!-- Limit the org.apache category to INFO as its DEBUG is verbose -->
<category name="org.apache">
<priority value="ERROR"/>
</category>
but still i see INFO level messages in the Console :
Code:
17:18:15,767 INFO [STDOUT] 17:18:15,767 [Thread-31] DEBUG GooGooStatementCache : com.mchange.v2.c3p0.stmt.GlobalMaxOnlyStatementCache ----> CACHE HIT
17:18:15,767 INFO [STDOUT] 17:18:15,767 [Thread-31] DEBUG GooGooStatementCache : checkoutStatement: com.mchange.v2.c3p0.stmt.GlobalMaxOnlyStatementCache stats -- total size: 26; checked out: 1; num connections: 5; num keys: 26
17:18:15,767 INFO [STDOUT] 17:18:15,767 [Thread-31] DEBUG GooGooStatementCache : checkinStatement(): com.mchange.v2.c3p0.stmt.GlobalMaxOnlyStatementCache stats -- total size: 26; checked out: 0; num connections: 5; num keys: 26
17:18:15,767 INFO [STDOUT] 17:18:15,767 [Thread-31] DEBUG GooGooStatementCache : checkinAll(): com.mchange.v2.c3p0.stmt.GlobalMaxOnlyStatementCache stats -- total size: 26; checked out: 0; num connections: 5; num keys: 26
17:18:15,767 INFO [STDOUT] 17:18:15,767 [Thread-31] DEBUG BasicResourcePool : trace com.mchange.v2.resourcepool.BasicResourcePool@115676d [managed: 5, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@b04d34)
17:18:15,767 INFO [STDOUT] 17:18:15,767 [Thread-31] DEBUG BasicResourcePool : resource age is okay: com.mchange.v2.c3p0.impl.NewPooledConnection@146c2cb ---> age: 10031 max: 300000 [com.mchange.v2.resourcepool.BasicResourcePool@115676d]
17:18:15,767 INFO [STDOUT] 17:18:15,767 [Thread-31] DEBUG BasicResourcePool : trace com.mchange.v2.resourcepool.BasicResourcePool@115676d [managed: 5, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@b04d34)
17:18:15,767 INFO [STDOUT] Hibernate: select this_.KEY_NUM as KEY1_8_0_, this_.VERSION as VERSION8_0_, this_.INSTANCE_KEY_NUM as INSTANCE3_8_0_, this_.PP_KEY_NUM as PP4_8_0_, this_.PTP_TASK_KEY_NUM as PTP5_8_0_, this_.NAME as NAME8_0_, this_.DESCRIPTION as DESCRIPT7_8_0_, this_.OFFSET as OFFSET8_0_, this_.DELAY_TIME as DELAY9_8_0_, this_.MAX_TIME as MAX10_8_0_, this_.STARTED_AT as STARTED11_8_0_, this_.ENDED_AT as ENDED12_8_0_, this_.ASSIGNMENT_GROUP as ASSIGNMENT13_8_0_, this_.ASSIGNED_OWNER as ASSIGNED14_8_0_, this_.AUTO_MANUAL as AUTO15_8_0_, this_.CHARGE_METHOD as CHARGE16_8_0_, this_.TOTAL_CHARGES as TOTAL17_8_0_, this_.STATUS as STATUS8_0_, this_.STAGE_NODE_PROCESS as STAGE19_8_0_, this_.HOST_NAME as HOST20_8_0_, this_.ACTION as ACTION8_0_, this_.TASK_RETURN_VALUE as TASK22_8_0_, this_.TASK_RETURN_DESCRIPTION as TASK23_8_0_, this_.JBPM_PI_ID as JBPM24_8_0_, this_.TASK_RETURN_STATUS as TASK25_8_0_, this_.PARAMS_STR as PARAMS26_8_0_, this_.JBPM_TASK_ID as JBPM27_8_0_, this_.PROCESS_NAME as PROCESS28_8_0_, this_.PROCESS_TYPE as PROCESS29_8_0_, this_.DELAYED_AT as DELAYED30_8_0_, this_.CHARGE as CHARGE8_0_, this_.COMPANY_KEY_NUM as COMPANY32_8_0_, this_.LAST_SUBSYS_NAME as LAST33_8_0_, this_.CREATION_DATE as CREATION34_8_0_, this_.LAST_UPDATE_DATE as LAST35_8_0_, this_.LAST_USER_NAME as LAST36_8_0_ from WorkFlow.dbo.WF_TASKS this_ where this_.COMPANY_KEY_NUM=? and this_.STATUS=?
17:18:15,783 INFO [STDOUT] 17:18:15,783 [Thread-31] DEBUG GooGooStatementCache : com.mchange.v2.c3p0.stmt.GlobalMaxOnlyStatementCache ----> CACHE HIT
17:18:15,783 INFO [STDOUT] 17:18:15,783 [Thread-31] DEBUG GooGooStatementCache : checkoutStatement: com.mchange.v2.c3p0.stmt.GlobalMaxOnlyStatementCache stats -- total size: 26; checked out: 1; num connections: 5; num keys: 26
17:18:15,783 INFO [STDOUT] 17:18:15,783 [Thread-31] DEBUG GooGooStatementCache : checkinStatement(): com.mchange.v2.c3p0.stmt.GlobalMaxOnlyStatementCache stats -- total size: 26; checked out: 0; num connections: 5; num keys: 26
17:18:15,783 INFO [STDOUT] 17:18:15,783 [Thread-31] DEBUG GooGooStatementCache : checkinAll(): com.mchange.v2.c3p0.stmt.GlobalMaxOnlyStatementCache stats -- total size: 26; checked out: 0; num connections: 5; num keys: 26
17:18:15,783 INFO [STDOUT] 17:18:15,783 [Thread-31] DEBUG BasicResourcePool : trace com.mchange.v2.resourcepool.BasicResourcePool@115676d [managed: 5, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@b04d34)
how can i remove these messages ?