[Proxool-cvs] proxool/src/java/org/logicalcobwebs/proxool ProxoolDriver.java,1.26,1.27
UNMAINTAINED!
Brought to you by:
billhorsman
From: <bil...@us...> - 2004-06-02 20:41:21
|
Update of /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/proxool In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17870/src/java/org/logicalcobwebs/proxool Modified Files: ProxoolDriver.java Log Message: Don't log SQLExceptions. Leave that up to the client. Index: ProxoolDriver.java =================================================================== RCS file: /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/proxool/ProxoolDriver.java,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** ProxoolDriver.java 16 Oct 2003 18:53:21 -0000 1.26 --- ProxoolDriver.java 2 Jun 2004 20:41:13 -0000 1.27 *************** *** 90,94 **** } catch (SQLException e) { ! LOG.error("Problem", e); // Check to see if it's fatal. We might need to wrap it up. try { --- 90,95 ---- } catch (SQLException e) { ! // We don't log exceptions. Leave that up to the client. ! // LOG.error("Problem", e); // Check to see if it's fatal. We might need to wrap it up. try { *************** *** 226,229 **** --- 227,233 ---- Revision history: $Log$ + Revision 1.27 2004/06/02 20:41:13 billhorsman + Don't log SQLExceptions. Leave that up to the client. + Revision 1.26 2003/10/16 18:53:21 billhorsman When registering a new pool on the fly, indicate that it is implicit (for exception message handling) |