Class LogLevel
On this page
io.realm.log
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
Constructors
Constructor and Description |
---|
LogLevel () |
Field Summary
Modifier and Type | Field and Description |
---|---|
public static final int | The ALL has the lowest possible rank and is intended to turn on all logging. |
public static final int | The DEBUG level designates fine-grained informational events that are mostly useful to debug an application. |
public static final int | The ERROR level designates error events that might still allow the application to continue running. |
public static final int | The FATAL level designates very severe error events that will presumably lead the application to abort. |
public static final int | The INFO level designates informational messages that highlight the progress of the application at coarse-grained level. |
public static final int | The OFF has the highest possible rank and is intended to turn off logging. |
public static final int | The TRACE level designates finer-grained informational events than DEBUG. |
public static final int | The WARN level designates potentially harmful situations. |
Inherited Methods
Methods inherited from class java.lang.Object :
getClass
,hashCode
,equals
,clone
,toString
,notify
,notifyAll
,wait
,wait
,wait
,finalize
Field Detail
ALL
The ALL has the lowest possible rank and is intended to turn on all logging.
DEBUG
The DEBUG level designates fine-grained informational events that are mostly useful to debug an application.
ERROR
The ERROR level designates error events that might still allow the application to continue running.
FATAL
The FATAL level designates very severe error events that will presumably lead the application to abort.
INFO
The INFO level designates informational messages that highlight the progress of the application at coarse-grained level.
OFF
The OFF has the highest possible rank and is intended to turn off logging.
TRACE
The TRACE level designates finer-grained informational events than DEBUG.
WARN
The WARN level designates potentially harmful situations.
Constructor Detail
public LogLevel () |
---|