Log.ILogOutput

public static interface Log.ILogOutput

com.android.tradefed.log.Log.ILogOutput


實作這個介面的類別可提供處理輸出記錄的方法 訊息。

摘要

公用方法

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

需要列印記錄訊息時傳送;如果可能,會在 對話方塊。

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

在需要列印記錄訊息時傳送。

公用方法

printAndPromptLog

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

需要列印記錄訊息時傳送;如果可能,會在 對話方塊。

參數
logLevel Log.LogLevel:代表訊息優先順序的 LogLevel 列舉。

tag String:與訊息相關聯的標記。

message String:要顯示的訊息。

列印記錄

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

在需要列印記錄訊息時傳送。

參數
logLevel Log.LogLevel:代表訊息優先順序的 LogLevel 列舉。

tag String:與訊息相關聯的標記。

message String:要顯示的訊息。