Menu Docs
Página inicial do Docs
/ /
Atlas Device SDKs
/ / /

Class RealmLog

Nesta página

  • io.realm.log
  • Construtores
  • Resumo do método
  • Métodos herdados
  • Detalhes do construtor
  • Detalhes do método
  • adicionar
  • Limpar
  • debug
  • Erro
  • Fatal
  • getLevel
  • informações
  • registrarDefaultLogger
  • remover
  • Definir nível
  • RASTREAR
  • AVISAR
java.lang.Object
io.realm.log.RealmLog

Agente de log global usado por todos os componentes do Realm. Registradores personalizados podem ser adicionados registrando classes que implementam o RealmLogger .

Construtor e descrição
Modificador e tipo
Método e descrição
public static void
add (
)

Adiciona uma implementação de registrador que será notificada em eventos de registro.

public static void

Remove todos os registradores.

public static void
Throwable throwable,
String message,
)

Registra um evento LogLevel.DEBUG .

public static void

Registra um evento LogLevel.DEBUG .

public static void
Throwable throwable
)

Registra uma exceção LogLevel.DEBUG .

public static void
Throwable throwable,
String message,
)

Registra um evento LogLevel.ERROR .

public static void

Registra um evento LogLevel.ERROR .

public static void
Throwable throwable
)

Registra uma exceção LogLevel.ERROR .

public static void
Throwable throwable,
String message,
)

Registra um evento LogLevel.FATAL .

public static void

Registra um evento LogLevel.FATAL .

public static void
Throwable throwable
)

Registra uma exceção LogLevel.FATAL .

public static int

Obtenha o LogLevel atual .

public static void
Throwable throwable,
String message,
)

Registra um evento LogLevel.INFO .

public static void

Registra um evento LogLevel.INFO .

public static void
Throwable throwable
)

Registra uma exceção LogLevel.INFO .

public static void

Adiciona um registrador nativo padrão se ele tiver sido removido antes.

public static boolean

Remove o registrador fornecido se ele estiver adicionado no momento.

public static void
int level
)

Define o LogLevel atual.

public static void
Throwable throwable,
String message,
)

Registra um evento LogLevel.TRACE .

public static void

Registra um evento LogLevel.TRACE .

public static void
Throwable throwable
)

Registra uma exceção LogLevel.TRACE .

public static void
Throwable throwable,
String message,
)

Registra um evento LogLevel.WARN .

public static void

Registra um evento LogLevel.WARN .

public static void
Throwable throwable
)

Registra uma exceção LogLevel.WARN .

  • Métodos herdados da classe java.lang.Object : getClass , hashCode , equals , clone , toString , notify , notifyAll , wait , wait , wait , finalize

public RealmLog ()

public static void add (
)

Adiciona uma implementação de registrador que será notificada em eventos de registro.

Parâmetros

  • logger - a referência a uma implementação do RealmLogger .

public static void clear ()

Remove todos os loggers. O registrador nativo padrão também será removido. Use registrarDefaultLogger() para adicioná-lo de volta.
public static void debug (
Throwable throwable,
String message,
)

Registra um evento LogLevel.DEBUG .

Parâmetros

  • throwable - exceção opcional para registrar.

  • message - mensagem opcional.

  • args - args opcionais usados para formatar a mensagem usando string.format(string, Object...) .

public static void debug (
)

Registra um evento LogLevel.DEBUG .

Parâmetros

public static void debug (
Throwable throwable
)

Registra uma exceção LogLevel.DEBUG .

Parâmetros

  • throwable - exceção ao registro.

public static void error (
Throwable throwable,
String message,
)

Registra um evento LogLevel.ERROR .

Parâmetros

  • throwable - exceção opcional para registrar.

  • message - mensagem opcional.

  • args - args opcionais usados para formatar a mensagem usando string.format(string, Object...) .

public static void error (
)

Registra um evento LogLevel.ERROR .

Parâmetros

public static void error (
Throwable throwable
)

Registra uma exceção LogLevel.ERROR .

Parâmetros

  • throwable - exceção ao registro.

public static void fatal (
Throwable throwable,
String message,
)

Registra um evento LogLevel.FATAL .

Parâmetros

  • throwable - exceção opcional para registrar.

  • message - mensagem opcional.

  • args - args opcionais usados para formatar a mensagem usando string.format(string, Object...) .

public static void fatal (
)

Registra um evento LogLevel.FATAL .

Parâmetros

public static void fatal (
Throwable throwable
)

Registra uma exceção LogLevel.FATAL .

Parâmetros

  • throwable - exceção ao registro.

public static int getLevel ()

Obtenha o LogLevel atual .

Devoluções

o LogLevel atual .

public static void info (
Throwable throwable,
String message,
)

Registra um evento LogLevel.INFO .

Parâmetros

  • throwable - exceção opcional para registrar.

  • message - mensagem opcional.

  • args - args opcionais usados para formatar a mensagem usando string.format(string, Object...) .

public static void info (
)

Registra um evento LogLevel.INFO .

Parâmetros

public static void info (
Throwable throwable
)

Registra uma exceção LogLevel.INFO .

Parâmetros

  • throwable - exceção ao registro.

public static void registerDefaultLogger ()

Adiciona um registrador nativo padrão se ele tiver sido removido antes. Se o registrador padrão já tiver sido registrado, ele não será adicionado novamente. O registrador padrão no Android registrará no logcat.
public static boolean remove (
)

Remove o registrador fornecido se ele estiver adicionado no momento.

Devoluções

true se o registrador foi removido, false caso contrário.

public static void setLevel (
int level
)

Define o LogLevel atual. Definir isso afetará todos os loggers registrados.

Parâmetros

public static void trace (
Throwable throwable,
String message,
)

Registra um evento LogLevel.TRACE .

Parâmetros

  • throwable - exceção opcional para registrar.

  • message - mensagem opcional.

  • args - args opcionais usados para formatar a mensagem usando string.format(string, Object...) .

public static void trace (
)

Registra um evento LogLevel.TRACE .

Parâmetros

public static void trace (
Throwable throwable
)

Registra uma exceção LogLevel.TRACE .

Parâmetros

  • throwable - exceção ao registro.

public static void warn (
Throwable throwable,
String message,
)

Registra um evento LogLevel.WARN .

Parâmetros

  • throwable - exceção opcional para registrar.

  • message - mensagem opcional.

  • args - args opcionais usados para formatar a mensagem usando string.format(string, Object...) .

public static void warn (
)

Registra um evento LogLevel.WARN .

Parâmetros

public static void warn (
Throwable throwable
)

Registra uma exceção LogLevel.WARN .

Parâmetros

  • throwable - exceção ao registro.

Voltar

LogLevel