in src/main/java/org/apache/fineract/cn/postgresql/config/EclipseLinkJpaConfiguration.java [89:98]
protected Map<String, Object> getVendorProperties() {
HashMap<String, Object> properties = new HashMap<>();
properties.put(PersistenceUnitProperties.WEAVING, "static");
properties.put(PersistenceUnitProperties.WEAVING_EAGER, "true");
properties.put(PersistenceUnitProperties.TARGET_DATABASE, TargetDatabase.PostgreSQL);
properties.put(PersistenceUnitProperties.BATCH_WRITING, BatchWriting.JDBC);
properties.put(PersistenceUnitProperties.LOGGING_LEVEL, SessionLog.ALL_LABEL);// Todo: Reduce log level after test
properties.put(PersistenceUnitProperties.LOGGING_PARAMETERS, "true");
return properties;
}