Docs Menu

Docs HomeDevelop ApplicationsAtlas Device SDKs

Class LogLevel

On this page

  • io.realm.log
  • Constructors
  • Field Summary
  • Inherited Methods
  • Field Detail
  • ALL
  • DEBUG
  • ERROR
  • FATAL
  • INFO
  • OFF
  • TRACE
  • WARN
  • Constructor Detail
io.realm.log.LogLevel

The Log levels defined and used by Realm when logging events in the API.Realm uses the log levels defined by Log4J: https://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/Level.html

Tip

See also:

Constructor and Description
Modifier and Type
Field and Description
public static final int

ALL

The ALL has the lowest possible rank and is intended to turn on all logging.

public static final int

DEBUG

The DEBUG level designates fine-grained informational events that are mostly useful to debug an application.

public static final int

ERROR

The ERROR level designates error events that might still allow the application to continue running.

public static final int

FATAL

The FATAL level designates very severe error events that will presumably lead the application to abort.

public static final int

INFO

The INFO level designates informational messages that highlight the progress of the application at coarse-grained level.

public static final int

OFF

The OFF has the highest possible rank and is intended to turn off logging.

public static final int

TRACE

The TRACE level designates finer-grained informational events than DEBUG.

public static final int

WARN

The WARN level designates potentially harmful situations.

  • Methods inherited from class java.lang.Object : getClass , hashCode , equals , clone , toString , notify , notifyAll , wait , wait , wait , finalize

The ALL has the lowest possible rank and is intended to turn on all logging.

The DEBUG level designates fine-grained informational events that are mostly useful to debug an application.

The ERROR level designates error events that might still allow the application to continue running.

The FATAL level designates very severe error events that will presumably lead the application to abort.

The INFO level designates informational messages that highlight the progress of the application at coarse-grained level.

The OFF has the highest possible rank and is intended to turn off logging.

The TRACE level designates finer-grained informational events than DEBUG.

The WARN level designates potentially harmful situations.

public LogLevel ()

← io.realm.log