summaryrefslogtreecommitdiffstats
path: root/tools/auto_bisect
diff options
context:
space:
mode:
authorqyearsley <qyearsley@chromium.org>2015-02-19 17:20:09 -0800
committerCommit bot <commit-bot@chromium.org>2015-02-20 01:20:58 +0000
commit5bd346fa76109901ad5b3ee6857eeb5808584eb6 (patch)
treeec792e3b806a7d123e7a11830b4c7f70abde7d7a /tools/auto_bisect
parent636ede0d5534e176622c6afb317c9d1181a1bba9 (diff)
downloadchromium_src-5bd346fa76109901ad5b3ee6857eeb5808584eb6.zip
chromium_src-5bd346fa76109901ad5b3ee6857eeb5808584eb6.tar.gz
chromium_src-5bd346fa76109901ad5b3ee6857eeb5808584eb6.tar.bz2
Tweak logging statements in fetch_build.py.
BUG= Review URL: https://codereview.chromium.org/927943005 Cr-Commit-Position: refs/heads/master@{#317206}
Diffstat (limited to 'tools/auto_bisect')
-rw-r--r--tools/auto_bisect/fetch_build.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/auto_bisect/fetch_build.py b/tools/auto_bisect/fetch_build.py
index 5e6e240..7b622fb 100644
--- a/tools/auto_bisect/fetch_build.py
+++ b/tools/auto_bisect/fetch_build.py
@@ -56,7 +56,7 @@ def GetBucketAndRemotePath(revision, builder_type=PERF_BUILDER,
Returns:
A pair of strings (bucket, path), where the archive is expected to be.
"""
- logging.info('Creating BuildArchive, type "%s", arch "%s", platform "%s".',
+ logging.info('Getting GS URL for archive of builder "%s", "%s", "%s".',
builder_type, target_arch, target_platform)
build_archive = BuildArchive.Create(
builder_type, target_arch=target_arch, target_platform=target_platform,
@@ -69,6 +69,8 @@ def GetBucketAndRemotePath(revision, builder_type=PERF_BUILDER,
def GetBuilderNameAndBuildTime(builder_type=PERF_BUILDER, target_arch='ia32',
target_platform='chromium', extra_src=None):
"""Gets builder bot name and build time in seconds based on platform."""
+ logging.info('Getting builder name for builder "%s", "%s", "%s".',
+ builder_type, target_arch, target_platform)
build_archive = BuildArchive.Create(
builder_type, target_arch=target_arch, target_platform=target_platform,
extra_src=extra_src)
@@ -87,8 +89,6 @@ class BuildArchive(object):
@staticmethod
def Create(builder_type, target_arch='ia32', target_platform='chromium',
extra_src=None):
- logging.info('Creating BuildArchive, type "%s", arch "%s", platform "%s".',
- builder_type, target_arch, target_platform)
if builder_type == PERF_BUILDER:
return PerfBuildArchive(target_arch, target_platform)
if builder_type == FULL_BUILDER: