[Proxool-cvs] proxool/src/java/org/logicalcobwebs/proxool ProxyConnection.java, 1.39, 1.40
UNMAINTAINED!
Brought to you by:
billhorsman
From: <bil...@us...> - 2007-05-15 23:17:24
|
Update of /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/proxool In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3424/src/java/org/logicalcobwebs/proxool Modified Files: ProxyConnection.java Log Message: Better log message when closing a statement automatically. Index: ProxyConnection.java =================================================================== RCS file: /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/proxool/ProxyConnection.java,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** ProxyConnection.java 25 Jan 2007 23:38:24 -0000 1.39 --- ProxyConnection.java 15 May 2007 23:17:21 -0000 1.40 *************** *** 225,229 **** statement.close(); if (connectionPool.getLog().isDebugEnabled()) { ! connectionPool.getLog().debug("Closing statement " + Integer.toHexString(statement.hashCode()) + " automatically"); } } --- 225,229 ---- statement.close(); if (connectionPool.getLog().isDebugEnabled()) { ! connectionPool.getLog().debug("Closing statement " + Integer.toHexString(statement.hashCode()) + " (belonging to connection " + getId() + ") automatically"); } } |