Log.Logger
public interface Log.Logger
Interface for a logger that can output messages with a tag.
Use DEFAULT to output to android.util.Log.
Summary
Constants |
|
|---|---|
default static final Log.Logger |
The default instance logging to |
Public methods |
|
|---|---|
abstract void |
Logs a debug-level message with an optional associated |
abstract void |
Logs an error-level message with an optional associated |
abstract void |
Logs an information-level message with an optional associated |
abstract void |
Logs a warning-level message with an optional associated |
Constants
Public methods
d
abstract void d(String tag, String message, @Nullable Throwable throwable)
Logs a debug-level message with an optional associated Throwable.
e
abstract void e(String tag, String message, @Nullable Throwable throwable)
Logs an error-level message with an optional associated Throwable.
i
abstract void i(String tag, String message, @Nullable Throwable throwable)
Logs an information-level message with an optional associated Throwable.