Package edu.uiuc.ncsa.security.core.util
Interface DebugConstants
-
- All Known Implementing Classes:
DebugUtil,MetaDebugUtil,ServletDebugUtil
public interface DebugConstantsCreated by Jeff Gaynor
on 10/23/20 at 3:41 PM
-
-
Field Summary
Fields Modifier and Type Field Description static intDEBUG_LEVEL_ERRORShow errors or possible branch points of errors, but ones that still allow the control flow to continuestatic StringDEBUG_LEVEL_ERROR_LABELstatic intDEBUG_LEVEL_INFOOnly basic information should be displayed, such as milestones in the control flowstatic StringDEBUG_LEVEL_INFO_LABELstatic intDEBUG_LEVEL_OFFTurn off debuggingstatic StringDEBUG_LEVEL_OFF_LABELstatic intDEBUG_LEVEL_SEVEREShow error that stop the control flow that probably lead the application to abort of be unrecoverable.static StringDEBUG_LEVEL_SEVERE_LABELstatic intDEBUG_LEVEL_TRACEShow detailed information about the execution so that detailed information about the control flow can be seen.static StringDEBUG_LEVEL_TRACE_LABELstatic intDEBUG_LEVEL_UNKNOWNstatic intDEBUG_LEVEL_WARNDisplay warnings about the control flow and possibly harmful thingsstatic StringDEBUG_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
-
-