All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opendcs.utils.properties.PropertySettings Maven / Gradle / Ivy

Go to download

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() {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy