Interface ConfigurationLogger

All Superinterfaces:
org.jboss.logging.BasicLogger, WeldLogger
All Known Implementing Classes:
ConfigurationLogger_$logger

@MessageLogger(projectCode="WELD-") public interface ConfigurationLogger extends WeldLogger
Log messages for configuration. Message IDs: 001900 - 001999
  • Field Details

  • Method Details

    • invalidConfigurationPropertyValue

      @Message(id=1900, value="Invalid configuration property value {0} for key {1}", format=MESSAGE_FORMAT) IllegalStateException invalidConfigurationPropertyValue(Object value, Object key)
    • configurationPropertyTypeMismatch

      @Message(id=1901, value="Configuration property type {0} does not match the required type {1} for configuration key {2}", format=MESSAGE_FORMAT) IllegalStateException configurationPropertyTypeMismatch(Object propertyType, Object requiredType, Object key)
    • configurationInitialized

      @LogMessage(level=DEBUG) @Message(id=1902, value="Following configuration was detected and applied: {0}", format=MESSAGE_FORMAT) void configurationInitialized(Object configuration)
    • configurationKeyAlreadySet

      @LogMessage(level=DEBUG) @Message(id=1903, value="Configuration key {0} already set to {1} in a source with higher priority, value {2} from {3} is ignored", format=MESSAGE_FORMAT) void configurationKeyAlreadySet(Object configurationKey, Object value, Object ignoredValue, String mergedSourceDescription)
    • unsupportedConfigurationKeyFound

      @LogMessage(level=WARN) @Message(id=1904, value="Unsupported configuration key found and ignored: {0}", format=MESSAGE_FORMAT) void unsupportedConfigurationKeyFound(Object key)
    • configurationKeyHasDifferentValues

      @Message(id=1905, value="Configuration key {0} set to different values in the same source:\n - {1}\n - {2}", format=MESSAGE_FORMAT) IllegalStateException configurationKeyHasDifferentValues(Object key, Object value1, Object value2)
    • resourceLoaderNotSpecifiedForArchive

      @LogMessage(level=DEBUG) @Message(id=1906, value="ResourceLoader not specified for {0}, file properties will not be loaded", format=MESSAGE_FORMAT) void resourceLoaderNotSpecifiedForArchive(Object archive)
    • readingPropertiesFile

      @LogMessage(level=DEBUG) @Message(id=1907, value="Reading properties file: {0}", format=MESSAGE_FORMAT) void readingPropertiesFile(Object file)
    • cannotSetIntegratorOnlyConfigurationProperty

      @LogMessage(level=WARN) @Message(id=1908, value="Configuration property {0} can only be set by integrator - value {1} ignored", format=MESSAGE_FORMAT) void cannotSetIntegratorOnlyConfigurationProperty(Object key, Object value)