hi, i'm using Hibernate 3.1 and i want to check if my web app has connection leak so i set
log4j.logger.org.hibernate.transaction=debug, stdout
log4j.logger.org.hibernate.jdbc=debug, stdout
and hibernate output:
10:11:22,390 DEBUG ConnectionManager:398 - aggressively releasing JDBC connectio
n
10:11:22,390 DEBUG ConnectionManager:398 - aggressively releasing JDBC connectio
n
...
10:11:22,390 DEBUG ConnectionManager:369 - connection already null in cleanup :
no action
10:11:22,390 DEBUG ConnectionManager:369 - connection already null in cleanup :
no action
Is these log correct? and what is "aggressively releasing" means? thanks!
|