Logger.LogLevel

  • Logger.LogLevel is an enum used to set the logging level for the Logger.

  • Log levels are set using the setLogLevel() method of the Logger and can be one of DEBUG, ERROR, INFO, NONE, VERBOSE, or WARNING.

  • Each enum value represents a different severity of log messages.

public static final enum Logger.LogLevel

Log Level setting. The Logger.LogLevel is provided to the Logger through the setLogLevel(LogLevel) method.

Enum Values

public static final Logger.LogLevel DEBUG

Log level of Debug.

public static final Logger.LogLevel ERROR

Log level of Error.

public static final Logger.LogLevel INFO

Log level of Info.

public static final Logger.LogLevel NONE

Log level of None.

public static final Logger.LogLevel VERBOSE

Log level of Verbose.

public static final Logger.LogLevel WARNING

Log level of Warning.