Remove print

This commit is contained in:
Tadgh
2021-08-28 12:52:56 -04:00
parent 6e876c1502
commit a8a98c311c

View File

@@ -376,8 +376,6 @@ public class BaseJpaRestfulServer extends RestfulServer {
//Parallel Batch GET execution settings //Parallel Batch GET execution settings
daoConfig.setBundleBatchPoolSize(appProperties.getBundle_batch_pool_size()); daoConfig.setBundleBatchPoolSize(appProperties.getBundle_batch_pool_size());
daoConfig.setBundleBatchPoolSize(appProperties.getBundle_batch_pool_max_size()); daoConfig.setBundleBatchPoolSize(appProperties.getBundle_batch_pool_max_size());
System.out.println("BATCH SIZE IS " + appProperties.getBundle_batch_pool_size());
System.out.println("BATCH MAX SIZE IS " + appProperties.getBundle_batch_pool_max_size());
if (appProperties.getImplementationGuides() != null) { if (appProperties.getImplementationGuides() != null) {
Map<String, AppProperties.ImplementationGuide> guides = appProperties.getImplementationGuides(); Map<String, AppProperties.ImplementationGuide> guides = appProperties.getImplementationGuides();