io.realm.log
Los niveles de registro definidos y utilizados por Realm al registrar eventos en la API. Realm utiliza los niveles de registro definidos por Log4J: https://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/Level.html
Constructores
Constructor and Description |
|---|
LogLevel () |
Field Summary
Modificador y Tipo | Campo y Descripción |
|---|---|
public static final int | ALL tiene el rango más bajo posible y está destinado a activar todo el registro. |
public static final int | El nivel DEBUG señala eventos informativos detallados que son principalmente útiles para depurar una aplicación. |
public static final int | The ERROR level designates error events that might still allow the application to continue running. |
public static final int | El nivel FATAL designa eventos de error muy graves que, presumiblemente, llevarán a la aplicación a abortar. |
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
Métodos heredados de la clase java.lang.Object:
getClass,hashCode,equals,clone,toString,notify,notifyAll,wait,wait,wait,finalize
Detalle del Campo
ALL
ALL tiene el rango más bajo posible y está destinado a activar todo el registro.
DEBUG
El nivel DEBUG señala eventos informativos detallados que son principalmente útiles para depurar una aplicación.
ERROR
The ERROR level designates error events that might still allow the application to continue running.
FATAL
El nivel FATAL designa eventos de error muy graves que, presumiblemente, llevarán a la aplicación a abortar.
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.
Detalle del constructor
public LogLevel () |
|---|