Class CustomLevelConfig
- java.lang.Object
-
- org.apache.logging.log4j.core.config.CustomLevelConfig
-
@Plugin(name="CustomLevel", category="Core", printObject=true) public final class CustomLevelConfig extends java.lang.Object
Descriptor of a custom Level object that is created via configuration.
-
-
Constructor Summary
Constructors Modifier Constructor Description private
CustomLevelConfig(java.lang.String levelName, int intLevel)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CustomLevelConfig
createLevel(java.lang.String levelName, int intLevel)
Creates a CustomLevelConfig object.boolean
equals(java.lang.Object object)
int
getIntLevel()
Returns the custom level intLevel that determines the strength of the custom level relative to the built-in levels.java.lang.String
getLevelName()
Returns the custom level name.int
hashCode()
java.lang.String
toString()
-
-
-
Method Detail
-
createLevel
@PluginFactory public static CustomLevelConfig createLevel(@PluginAttribute("name") java.lang.String levelName, @PluginAttribute("intLevel") int intLevel)
Creates a CustomLevelConfig object. This also defines the Level object with a call toLevel.forName(String, int)
.- Parameters:
levelName
- name of the custom level.intLevel
- the intLevel that determines where this level resides relative to the built-in levels- Returns:
- A CustomLevelConfig object.
-
getLevelName
public java.lang.String getLevelName()
Returns the custom level name.- Returns:
- the custom level name
-
getIntLevel
public int getIntLevel()
Returns the custom level intLevel that determines the strength of the custom level relative to the built-in levels.- Returns:
- the custom level intLevel
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object object)
- Overrides:
equals
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-