| Index: build/android/pylib/gtest/test_package_apk.py
|
| diff --git a/build/android/pylib/gtest/test_package_apk.py b/build/android/pylib/gtest/test_package_apk.py
|
| index f18d87cd44d0fe6530a5c72c15e920c53615a95f..64e233e76e28b535f224c1fe2b6e1a09a211ab62 100644
|
| --- a/build/android/pylib/gtest/test_package_apk.py
|
| +++ b/build/android/pylib/gtest/test_package_apk.py
|
| @@ -3,6 +3,7 @@
|
| # found in the LICENSE file.
|
|
|
|
|
| +import logging
|
| import os
|
| import shlex
|
| import sys
|
| @@ -63,7 +64,7 @@ class TestPackageApk(TestPackage):
|
| def _WatchFifo(self, timeout, logfile=None):
|
| for i in range(10):
|
| if self.adb.FileExistsOnDevice(self._GetFifo()):
|
| - print 'Fifo created...'
|
| + logging.info('Fifo created.')
|
| break
|
| time.sleep(i)
|
| else:
|
|
|