LogLevel

private ENUM
 

Enum Description

Enumerates the verbosity levels of the logging system, from NONE (least verbose) to DEBUG (most verbose).

The order of increasing verbosity is: NONE < FATAL < ERROR < WARN < INFO < DEBUG.

  • NONE indicates no logging should occur.
  • FATAL allows only messages related to application crashes.
  • ERROR adds messages related to unexpected results that will break expected behavior.
  • WARN adds messages related to unexpected results that will not break expected behavior.
  • INFO adds messages that track happy path execution.
  • DEBUG adds messages that track program state.

Use Log.levelToString() to retrieve a text representation of the level.

See Also

 

Listing

 

Fields

NONE():LogLevel
static
indicates no logging should occur
FATAL():LogLevel
static
for messages related to application crashes
ERROR():LogLevel
static
for messages related to unexpected results that will break expected behavior
WARN():LogLevel
static
for messages related to unexpected results that will not break expected behavior
INFO():LogLevel
static
for messages that track happy path execution
DEBUG():LogLevel
static
for messages that track program state
 

Details

 

Fields

 

NONE
static

public static NONE():LogLevel

indicates no logging should occur

 

FATAL
static

public static FATAL():LogLevel

for messages related to application crashes

 

ERROR
static

public static ERROR():LogLevel

for messages related to unexpected results that will break expected behavior

 

WARN
static

public static WARN():LogLevel

for messages related to unexpected results that will not break expected behavior

 

INFO
static

public static INFO():LogLevel

for messages that track happy path execution

 

DEBUG
static

public static DEBUG():LogLevel

for messages that track program state

 

 

 

 

 

 

 

 

 

 

log-ls 2018 pixeldroid
https://github.com/pixeldroid/log-ls
generated with lsdoc v1.0.0 (https://github.com/pixeldroid/lsdoc)