Changeset 134
- Timestamp:
- 04/01/06 23:43:15 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/jsmtpd/src/org/jsmtpd/generic/threadpool/GrowingThreadPool.java
r130 r134 195 195 try { 196 196 lastUp=System.currentTimeMillis(); 197 log. debug("Increasing of "+growth+", from "+threads.size());197 log.info("Increasing of "+growth+", from "+threads.size()); 198 198 for (int i=0;i<growth;i++) { 199 199 tmp = new ThreadWorker(); … … 246 246 } catch (InterruptedException e) { 247 247 } 248 log. info("Current size "+threads.size()+"/"+maxSize+", "+countFreeThread()+" free threads");248 log.debug("Current size "+threads.size()+"/"+maxSize+", "+countFreeThread()+" free threads"); 249 249 lowerPool(); 250 250 }
