public Properties getLogProperties()

in taverna-app-configuration-impl/src/main/java/org/apache/taverna/configuration/app/impl/Log4JConfiguration.java [79:93]


	public Properties getLogProperties() {
		if (properties == null) {
			InputStream is = getLogPropertiesInputStream();
			if (is != null) {
				try {
					properties = new Properties();
					properties.load(is);
//					properties.putAll(System.getProperties());
				}  catch (IOException e) {
					errorLog("An error occurred trying to load the " + LOG4J_PROPERTIES + " file",e);
				}
			}
		}
		return properties;
	}