public interface Logger
| Modifier and Type | Method and Description |
|---|---|
void |
debug(String format,
Object... args) |
void |
debug(String message,
Throwable throwable)
Deprecated.
you might prefer
#debug(Throwable, String) |
void |
debug(Throwable t,
String format,
Object... args) |
void |
error(String format,
Object... args) |
void |
error(String message,
Throwable throwable)
Deprecated.
you might prefer
#error(Throwable, String) |
void |
error(Throwable t,
String format,
Object... args) |
String |
getName() |
void |
info(String format,
Object... args) |
void |
info(String message,
Throwable throwable)
Deprecated.
you might prefer
#info(Throwable, String) |
void |
info(Throwable t,
String format,
Object... args) |
boolean |
isDebugEnabled() |
boolean |
isErrorEnabled() |
boolean |
isInfoEnabled() |
boolean |
isTraceEnabled() |
boolean |
isWarnEnabled() |
void |
trace(String format,
Object... args) |
void |
trace(Throwable t,
String format,
Object... args) |
void |
warn(String format,
Object... args) |
void |
warn(String message,
Throwable throwable)
Deprecated.
you might prefer
#warn(Throwable, String) |
void |
warn(Throwable t,
String format,
Object... args) |
boolean isTraceEnabled()
boolean isDebugEnabled()
boolean isInfoEnabled()
boolean isWarnEnabled()
boolean isErrorEnabled()
@Deprecated void debug(String message, Throwable throwable)
#debug(Throwable, String)@Deprecated void info(String message, Throwable throwable)
#info(Throwable, String)@Deprecated void warn(String message, Throwable throwable)
#warn(Throwable, String)@Deprecated void error(String message, Throwable throwable)
#error(Throwable, String)String getName()
Copyright © 2012–2018 Facebook, Inc.. All rights reserved.