diff options
author | tonyg@chromium.org <tonyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-15 20:17:41 +0000 |
---|---|---|
committer | tonyg@chromium.org <tonyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-15 20:17:41 +0000 |
commit | 0024ca1f9b59a4d9dead968725c53b8239b78762 (patch) | |
tree | 070eec18da214c10b6edc0bd16ff860e43999ef1 /tools/telemetry | |
parent | 12bbc19bbbc82d0cc483f6430dfeffdbb652d6cc (diff) | |
download | chromium_src-0024ca1f9b59a4d9dead968725c53b8239b78762.zip chromium_src-0024ca1f9b59a4d9dead968725c53b8239b78762.tar.gz chromium_src-0024ca1f9b59a4d9dead968725c53b8239b78762.tar.bz2 |
[Telemetry] Cut down on the amount of log spam on the android perf bots.
The perf bots run with -v (INFO level debugging). I'm moving the noisiest
output to DEBUG level. This will make the android log output more parsable
so that the real failures are easier to spot.
Also, this cuts down on several commands running between each page.
BUG=None
TEST=smoothness and page_cycler on android
Review URL: https://chromiumcodereview.appspot.com/18764005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@211673 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/telemetry')
-rw-r--r-- | tools/telemetry/telemetry/page/page_runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/telemetry/telemetry/page/page_runner.py b/tools/telemetry/telemetry/page/page_runner.py index 618894e..01f4b3c 100644 --- a/tools/telemetry/telemetry/page/page_runner.py +++ b/tools/telemetry/telemetry/page/page_runner.py @@ -412,7 +412,7 @@ def _WaitForThermalThrottlingIfNeeded(platform): thermal_throttling_retry += 1 time.sleep(thermal_throttling_retry * 2) - if platform.IsThermallyThrottled(): + if thermal_throttling_retry and platform.IsThermallyThrottled(): logging.error('Device is thermally throttled before running ' 'performance tests, results will vary.') |