com.android.ddmlib
Interface Log.ILogOutput

Enclosing class:
Log

public static interface Log.ILogOutput

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


Method Summary
 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.
 void printLog(Log.LogLevel logLevel, String tag, String message)
          Sent when a log message needs to be printed.
 

Method Detail

printLog

void printLog(Log.LogLevel logLevel,
              String tag,
              String message)
Sent when a log message needs to be printed.

Parameters:
logLevel - The Log.LogLevel enum representing the priority of the message.
tag - The tag associated with the message.
message - The message to display.

printAndPromptLog

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 - The Log.LogLevel enum representing the priority of the message.
tag - The tag associated with the message.
message - The message to display.


Copyright © 2008-2012. All Rights Reserved.