Index: build/android/pylib/utils/run_tests_helper.py |
diff --git a/build/android/pylib/utils/run_tests_helper.py b/build/android/pylib/utils/run_tests_helper.py |
index 32275970d90fac2a3e723f6cbe6753fe4ecd9524..eefc03bfb90698f63a9ff996c46f196237270c16 100644 |
--- a/build/android/pylib/utils/run_tests_helper.py |
+++ b/build/android/pylib/utils/run_tests_helper.py |
@@ -6,6 +6,7 @@ |
import logging |
import os |
+import sys |
import time |
@@ -47,6 +48,6 @@ def SetLogLevel(verbose_count): |
log_level = logging.DEBUG |
logger = logging.getLogger() |
logger.setLevel(log_level) |
- custom_handler = logging.StreamHandler() |
+ custom_handler = logging.StreamHandler(sys.stdout) |
custom_handler.setFormatter(CustomFormatter()) |
logging.getLogger().addHandler(custom_handler) |