org.opendcs.utils.properties.PropertySettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opendcs Show documentation
Show all versions of opendcs Show documentation
A collection of software for aggregatting and processing environmental data such as from NOAA GOES satellites.
The newest version!
package org.opendcs.utils.properties;
public class PropertySettings {
/**
* Allows the user to see where a property wasn't picked up correctly
* while diagnosing using external sources for property values.
* Turn this on sparingly as it generates a lot of noise for properties that
* Don't reference an external source but just have a raw value.
* @since 7.0.14
*/
public static final boolean TRACE_PROPERTY_PROVIDERS =
Boolean.parseBoolean(
System.getProperty("opendcs.property.providers.trace", "false")
);
private PropertySettings() {}
}