Log.ILogOutput

public static interface Log.ILogOutput

com.android.tradefed.log.Log.ILogOutput


Classes which implement this interface provides methods that deal with outputting log messages.

Summary

Public methods

abstract void printAndPromptLog(Log.LogLevel logLevel, String tag, String message)

Sent when a log message needs to be printed, and, if possible, displayed to the user in a dialog box.

abstract void printLog(Log.LogLevel logLevel, String tag, String message)

Sent when a log message needs to be printed.

Public methods

printAndPromptLog

public abstract void printAndPromptLog (Log.LogLevel logLevel, 
                String tag, 
                String message)

Sent when a log message needs to be printed, and, if possible, displayed to the user in a dialog box.

Parameters
logLevel Log.LogLevel: The LogLevel enum representing the priority of the message.

tag String: The tag associated with the message.

message String: The message to display.

printLog

public abstract void printLog (Log.LogLevel logLevel, 
                String tag, 
                String message)

Sent when a log message needs to be printed.

Parameters
logLevel Log.LogLevel: The LogLevel enum representing the priority of the message.

tag String: The tag associated with the message.

message String: The message to display.