public static interface Log.ILogOutput
| Modifier and Type | Method and Description |
|---|---|
void |
printAndPromptLog(Log.LogLevel logLevel,
java.lang.String tag,
java.lang.String message)
Sent when a log message needs to be printed, and, if possible, displayed to the user
in a dialog box.
|
void |
printLog(Log.LogLevel logLevel,
java.lang.String tag,
java.lang.String message)
Sent when a log message needs to be printed.
|
void printLog(Log.LogLevel logLevel, java.lang.String tag, java.lang.String message)
logLevel - The Log.LogLevel enum representing the priority of the message.tag - The tag associated with the message.message - The message to display.void printAndPromptLog(Log.LogLevel logLevel, java.lang.String tag, java.lang.String message)
logLevel - The Log.LogLevel enum representing the priority of the message.tag - The tag associated with the message.message - The message to display.