[Proxool-cvs] proxool/src/java/org/logicalcobwebs/proxool ProxyFactory.java,1.28,1.29
UNMAINTAINED!
Brought to you by:
billhorsman
From: <bil...@us...> - 2004-07-27 21:44:25
|
Update of /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/proxool In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28869/src/java/org/logicalcobwebs/proxool Modified Files: ProxyFactory.java Log Message: Remove insane amount of debug logging. Index: ProxyFactory.java =================================================================== RCS file: /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/proxool/ProxyFactory.java,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** ProxyFactory.java 17 Jun 2004 21:58:36 -0000 1.28 --- ProxyFactory.java 27 Jul 2004 21:44:15 -0000 1.29 *************** *** 125,131 **** */ private static Class[] getInterfaces(Class clazz, ConnectionPool connectionPool) { - if (LOG.isDebugEnabled()) { - LOG.debug("Looking up injectable interfaces for " + clazz); - } Class[] interfaceArray = (Class[]) interfaceMap.get(clazz); if (interfaceArray == null) { --- 125,128 ---- *************** *** 290,293 **** --- 287,293 ---- Revision history: $Log$ + Revision 1.29 2004/07/27 21:44:15 billhorsman + Remove insane amount of debug logging. + Revision 1.28 2004/06/17 21:58:36 billhorsman Injectable interface fixes. |