File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/org/owasp/esapi/logging/java Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 18
18
import java .util .logging .Level ;
19
19
20
20
/**
21
- * A custom logging level defined between Level.SEVERE and Level.WARNING in logger .
21
+ * Definitions of customized Java Logging Level options to map ESAPI behavior to the desired Java Log output behaviors .
22
22
*/
23
23
public class ESAPICustomJavaLevel extends Level {
24
24
@@ -33,7 +33,7 @@ public class ESAPICustomJavaLevel extends Level {
33
33
/**
34
34
* Defines a custom level that should result in content always being recorded, unless the Java Logging configuration is set to OFF.
35
35
*/
36
- public static final Level ALWAYS_LEVEL = new ESAPICustomJavaLevel ( "ERROR " , Level .OFF .intValue () - 1 );
36
+ public static final Level ALWAYS_LEVEL = new ESAPICustomJavaLevel ( "ALWAYS " , Level .OFF .intValue () - 1 );
37
37
38
38
/**
39
39
* Constructs an instance of a JavaLoggerLevel which essentially provides a mapping between the name of
You can’t perform that action at this time.
0 commit comments