Logger.LogLevel

  • Logger.LogLevel is deprecated and developers should refer to the Logger interface for details.

  • This class defines log level settings (ERROR, INFO, VERBOSE, WARNING) which are used with the Logger interface.

  • The log level is set using the setLogLevel(int) method of the Logger interface.

  • Despite being deprecated, Logger.LogLevel provides constants representing different log levels.

public static class Logger.LogLevel extends Object

This class is deprecated.
See Logger interface for details.

Log level settings. The log level is provided to the Logger through the Logger.setLogLevel(int) method.

Constant Summary

int ERROR
int INFO
int VERBOSE
int WARNING

Public Constructor Summary

Inherited Method Summary

Constants

public static final int ERROR

Constant Value: 3

public static final int INFO

Constant Value: 1

public static final int VERBOSE

Constant Value: 0

public static final int WARNING

Constant Value: 2

Public Constructors

public LogLevel ()