protected Map getVendorProperties()

in src/main/java/org/apache/fineract/cn/mariadb/config/EclipseLinkJpaConfiguration.java [84:93]


	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.MySQL);
		properties.put(PersistenceUnitProperties.LOGGING_LEVEL, SessionLog.ALL_LABEL);// Todo: Reduce log level after test
		properties.put(PersistenceUnitProperties.LOGGING_PARAMETERS, "true");
		properties.put(PersistenceUnitProperties.DEPLOY_ON_STARTUP, "false");
		return properties;
	}