Changeset 134

Show
Ignore:
Timestamp:
04/01/06 23:43:15 (3 years ago)
Author:
jfp
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/jsmtpd/src/org/jsmtpd/generic/threadpool/GrowingThreadPool.java

    r130 r134  
    195195            try { 
    196196                lastUp=System.currentTimeMillis(); 
    197                 log.debug("Increasing of "+growth+", from "+threads.size()); 
     197                log.info("Increasing of "+growth+", from "+threads.size()); 
    198198                for (int i=0;i<growth;i++) { 
    199199                    tmp = new ThreadWorker(); 
     
    246246            } catch (InterruptedException e) { 
    247247            } 
    248             log.info("Current size "+threads.size()+"/"+maxSize+", "+countFreeThread()+" free threads"); 
     248            log.debug("Current size "+threads.size()+"/"+maxSize+", "+countFreeThread()+" free threads"); 
    249249            lowerPool(); 
    250250        }