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.java60 logger.printLog(LogLevel.INFO, LOG_TAG, Text1); in testLogToLogger()
62 logger.printLog(LogLevel.VERBOSE, LOG_TAG, Text2); in testLogToLogger()
65 logger.printLog(LogLevel.ASSERT, LOG_TAG, Text3); in testLogToLogger()
/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.java137 printLog(LogLevel.ERROR, LOG_TAG, "Unregistering when thread has no logger " in unregisterLogger()
171 public void printLog(LogLevel logLevel, String tag, String message) { in printLog() method in LogRegistry
175 log.printLog(logLevel, tag, message); in printLog()
DHistoryLogger.java49 public void printLog(LogLevel logLevel, String tag, String message) { in printLog() method in HistoryLogger
DFileLogger.java119 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.java252 mConfig.getLogOutput().printLog(LogLevel.INFO, "testGetLogOutput", "test"); in testGetLogOutput()