removed setting of java.util.logging.config.file inside this class as

this has no effect!
This commit is contained in:
2014-01-15 13:37:07 +01:00
parent eb0aa9a1b6
commit 30355deacc

View File

@@ -81,15 +81,8 @@ public class ApplicationConfigurator {
createApplicationHome();
createDefaultConfigurationFiles();
// Configure used packages / e.g. via setting system/environment parameters, etc.
// Set logging configuration -Djava.util.logging=...
String property = System.getProperty("java.util.logging.config.file");
if(property==null){
System.setProperty("java.util.logging.config.file", loggingProperties.getAbsolutePath());
}
// Set FDA configuration argument -Dch.psi.fda.config.file=...
property = System.getProperty(AcquisitionConfiguration.FDA_CONFIG_FILE);
String property = System.getProperty(AcquisitionConfiguration.FDA_CONFIG_FILE);
if(property==null){
System.setProperty(AcquisitionConfiguration.FDA_CONFIG_FILE, fdaProperties.getAbsolutePath());
}