From 91e5652fb022a8cc6d2982defeaa912c4d2ef9d2 Mon Sep 17 00:00:00 2001 From: mikecase Date: Mon, 4 May 2015 16:28:46 -0700 Subject: [PATCH] Shorten log message in test runner to make output look cleaner. BUG= Review URL: https://codereview.chromium.org/1123833002 Cr-Commit-Position: refs/heads/master@{#328215} --- build/android/pylib/remote/device/remote_device_test_run.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/android/pylib/remote/device/remote_device_test_run.py b/build/android/pylib/remote/device/remote_device_test_run.py index 39ffddff4c396d..60a066442cb183 100644 --- a/build/android/pylib/remote/device/remote_device_test_run.py +++ b/build/android/pylib/remote/device/remote_device_test_run.py @@ -196,9 +196,9 @@ def _GetRawTestOutput(self): return r.read() else: logging.warning( - 'If the results are too long they could be cut off due to an ' - 'appurify bug. Use the --results-path option when running the ' - 'collect step to ensure you download the full results.') + 'If the test output is too long, some test results may get cut off.') + logging.warning( + 'Use the --results-path option to ensure you get the full results.') return self._results['results']['output'] def _GetTestStatus(self, test_run_id):