Update of /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/proxool
In directory sc8-pr-cvs1:/tmp/cvs-serv12442
Modified Files:
HouseKeeperThread.java
Log Message:
removed redundant debug
Index: HouseKeeperThread.java
===================================================================
RCS file: /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/proxool/HouseKeeperThread.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** HouseKeeperThread.java 10 Mar 2003 15:26:47 -0000 1.2
--- HouseKeeperThread.java 19 Apr 2003 12:57:29 -0000 1.3
***************
*** 34,40 ****
while (hk != null) {
try {
! if (LOG.isDebugEnabled()) {
! LOG.debug("About to sweep " + hk.getAlias());
! }
hk.sweep();
} catch (ProxoolException e) {
--- 34,40 ----
while (hk != null) {
try {
! // if (LOG.isDebugEnabled()) {
! // LOG.debug("About to sweep " + hk.getAlias());
! // }
hk.sweep();
} catch (ProxoolException e) {
***************
*** 62,65 ****
--- 62,68 ----
Revision history:
$Log$
+ Revision 1.3 2003/04/19 12:57:29 billhorsman
+ removed redundant debug
+
Revision 1.2 2003/03/10 15:26:47 billhorsman
refactoringn of concurrency stuff (and some import
|