//final int minSpareThreads = configuration.getChild( "min-spare-threads" ).
// getValueAsInteger( maxThreads - minThreads );
try
{
final DefaultThreadPool threadPool =
new DefaultThreadPool( name, minThreads, maxThreads );
threadPool.setDaemon( isDaemon );
threadPool.enableLogging( getLogger() );
threadPools.put( name, threadPool );
}
catch( final Exception e )
{
final String message = "Error creating ThreadPool named " + name;