Home
last modified time | relevance | path

Searched refs:printLog (Results 1 – 8 of 8) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/log/
DLogRegistryTest.java83 mockLogger.printLog(LogLevel.VERBOSE, LOG_TAG, testMessage); in testPrintLog_sameLogLevel()
86 mLogRegistry.printLog(LogLevel.VERBOSE, LOG_TAG, testMessage); in testPrintLog_sameLogLevel()
103 mLogRegistry.printLog(LogLevel.VERBOSE, LOG_TAG, testMessage); in testPrintLog_lowerLogLevel()
144 mockLogger.printLog(LogLevel.VERBOSE, LOG_TAG, testMessage); in testThreadedLogging()
147 mockLogger.printLog(LogLevel.ERROR, LOG_TAG, testMessage); in testThreadedLogging()
DFileLoggerTest.java68 logger.printLog(LogLevel.INFO, LOG_TAG, Text1); in testLogToLogger()
70 logger.printLog(LogLevel.VERBOSE, LOG_TAG, Text2); in testLogToLogger()
73 logger.printLog(LogLevel.ASSERT, LOG_TAG, Text3); in testLogToLogger()
218 logger.printLog(LogLevel.INFO, "ddms", "should not be printed"); in testFiltering_ddms()
243 logger.printLog(LogLevel.WARN, "ddms", message); in testFiltering_ddms_log()
/tools/tradefederation/core/src/com/android/tradefed/log/
DStdoutLogger.java42 printLog(logLevel, tag, message); in printAndPromptLog()
50 public void printLog(LogLevel logLevel, String tag, String message) { in printLog() method in StdoutLogger
51 LogUtil.printLog(logLevel, tag, message); in printLog()
DLogRegistry.java128 printLog(LogLevel.ERROR, LOG_TAG, "Unregistering when thread has no logger " in unregisterLogger()
162 public void printLog(LogLevel logLevel, String tag, String message) { in printLog() method in LogRegistry
166 log.printLog(logLevel, tag, message); in printLog()
DHistoryLogger.java49 public void printLog(LogLevel logLevel, String tag, String message) { in printLog() method in HistoryLogger
DFileLogger.java110 public void printLog(LogLevel logLevel, String tag, String message) { in printLog() method in FileLogger
DLogUtil.java47 public static void printLog(LogLevel logLevel, String tag, String message) { in printLog() method in LogUtil
/tools/tradefederation/core/tests/src/com/android/tradefed/config/
DConfigurationTest.java253 mConfig.getLogOutput().printLog(LogLevel.INFO, "testGetLogOutput", "test"); in testGetLogOutput()