Package edu.uiuc.ncsa.security.core.util
Interface DebugConstants
-
- All Known Implementing Classes:
DebugUtil
,MetaDebugUtil
,ServletDebugUtil
public interface DebugConstants
Created by Jeff Gaynor
on 10/23/20 at 3:41 PM
-
-
Field Summary
Fields Modifier and Type Field Description static int
DEBUG_LEVEL_ERROR
Show errors or possible branch points of errors, but ones that still allow the control flow to continuestatic String
DEBUG_LEVEL_ERROR_LABEL
static int
DEBUG_LEVEL_INFO
Only basic information should be displayed, such as milestones in the control flowstatic String
DEBUG_LEVEL_INFO_LABEL
static int
DEBUG_LEVEL_OFF
Turn off debuggingstatic String
DEBUG_LEVEL_OFF_LABEL
static int
DEBUG_LEVEL_SEVERE
Show error that stop the control flow that probably lead the application to abort of be unrecoverable.static String
DEBUG_LEVEL_SEVERE_LABEL
static int
DEBUG_LEVEL_TRACE
Show detailed information about the execution so that detailed information about the control flow can be seen.static String
DEBUG_LEVEL_TRACE_LABEL
static int
DEBUG_LEVEL_UNKNOWN
static int
DEBUG_LEVEL_WARN
Display warnings about the control flow and possibly harmful thingsstatic String
DEBUG_LEVEL_WARN_LABEL
-
-
-
Field Detail
-
DEBUG_LEVEL_OFF
static final int DEBUG_LEVEL_OFF
Turn off debugging- See Also:
- Constant Field Values
-
DEBUG_LEVEL_ERROR
static final int DEBUG_LEVEL_ERROR
Show errors or possible branch points of errors, but ones that still allow the control flow to continue- See Also:
- Constant Field Values
-
DEBUG_LEVEL_SEVERE
static final int DEBUG_LEVEL_SEVERE
Show error that stop the control flow that probably lead the application to abort of be unrecoverable.- See Also:
- Constant Field Values
-
DEBUG_LEVEL_WARN
static final int DEBUG_LEVEL_WARN
Display warnings about the control flow and possibly harmful things- See Also:
- Constant Field Values
-
DEBUG_LEVEL_INFO
static final int DEBUG_LEVEL_INFO
Only basic information should be displayed, such as milestones in the control flow- See Also:
- Constant Field Values
-
DEBUG_LEVEL_TRACE
static final int DEBUG_LEVEL_TRACE
Show detailed information about the execution so that detailed information about the control flow can be seen. Note that this may be extremely verbose.- See Also:
- Constant Field Values
-
DEBUG_LEVEL_UNKNOWN
static final int DEBUG_LEVEL_UNKNOWN
- See Also:
- Constant Field Values
-
DEBUG_LEVEL_OFF_LABEL
static final String DEBUG_LEVEL_OFF_LABEL
- See Also:
- Constant Field Values
-
DEBUG_LEVEL_ERROR_LABEL
static final String DEBUG_LEVEL_ERROR_LABEL
- See Also:
- Constant Field Values
-
DEBUG_LEVEL_SEVERE_LABEL
static final String DEBUG_LEVEL_SEVERE_LABEL
- See Also:
- Constant Field Values
-
DEBUG_LEVEL_WARN_LABEL
static final String DEBUG_LEVEL_WARN_LABEL
- See Also:
- Constant Field Values
-
DEBUG_LEVEL_INFO_LABEL
static final String DEBUG_LEVEL_INFO_LABEL
- See Also:
- Constant Field Values
-
DEBUG_LEVEL_TRACE_LABEL
static final String DEBUG_LEVEL_TRACE_LABEL
- See Also:
- Constant Field Values
-
-