Class ResourceBundleLookup

java.lang.Object
org.apache.logging.log4j.core.lookup.AbstractLookup
org.apache.logging.log4j.core.lookup.ResourceBundleLookup
All Implemented Interfaces:
StrLookup

@Plugin(name="bundle", category="Lookup") public class ResourceBundleLookup extends AbstractLookup
Looks up keys from resource bundles.
  • Constructor Details

    • ResourceBundleLookup

      public ResourceBundleLookup()
  • Method Details

    • lookup

      public String lookup(LogEvent event, String key)
      Looks up the value for the key in the format "BundleName:BundleKey". For example: "com.domain.messages:MyKey".
      Parameters:
      event - The current LogEvent.
      key - the key to be looked up, may be null
      Returns:
      The value associated with the key.