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 Summary
Constructors Constructor Description ResourceBundleLookup()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
lookup(LogEvent event, java.lang.String key)
Looks up the value for the key in the format "BundleName:BundleKey".-
Methods inherited from class org.apache.logging.log4j.core.lookup.AbstractLookup
lookup
-
-
-
-
Method Detail
-
lookup
public java.lang.String lookup(LogEvent event, java.lang.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.
-
-