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 enum입니다.

tag String: 메시지와 연결된 태그입니다.

message String: 표시할 메시지입니다.

printLog

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

로그 메시지를 출력해야 할 때 전송됩니다.

매개변수
logLevel Log.LogLevel: 메시지의 우선순위를 나타내는 LogLevel enum입니다.

tag String: 메시지와 연결된 태그입니다.

message String: 표시할 메시지입니다.