Package org.owasp.esapi.logging.java
Class ESAPICustomJavaLevel
- java.lang.Object
-
- java.util.logging.Level
-
- org.owasp.esapi.logging.java.ESAPICustomJavaLevel
-
- All Implemented Interfaces:
java.io.Serializable
public class ESAPICustomJavaLevel extends java.util.logging.Level
Definitions of customized Java Logging Level options to map ESAPI behavior to the desired Java Log output behaviors.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.util.logging.Level
ALWAYS_LEVEL
Defines a custom level that should result in content always being recorded, unless the Java Logging configuration is set to OFF.static java.util.logging.Level
ERROR_LEVEL
Defines a custom error level below SEVERE but above WARNING since this level isn't defined directly by java.util.Logger already.protected static long
serialVersionUID
-
-
-
Field Detail
-
serialVersionUID
protected static final long serialVersionUID
- See Also:
- Constant Field Values
-
ERROR_LEVEL
public static final java.util.logging.Level ERROR_LEVEL
Defines a custom error level below SEVERE but above WARNING since this level isn't defined directly by java.util.Logger already.
-
ALWAYS_LEVEL
public static final java.util.logging.Level ALWAYS_LEVEL
Defines a custom level that should result in content always being recorded, unless the Java Logging configuration is set to OFF.
-
-