Chromium Code Reviews| Index: tools/auto_bisect/fetch_build.py |
| diff --git a/tools/auto_bisect/fetch_build.py b/tools/auto_bisect/fetch_build.py |
| index ac3f032f5d1691889e70cb6acbc2edc04dbbcf66..bca239f2957113e84e4bef1c5b3be6112d719fdb 100644 |
| --- a/tools/auto_bisect/fetch_build.py |
| +++ b/tools/auto_bisect/fetch_build.py |
| @@ -51,6 +51,8 @@ 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".', |
| + builder_type, target_arch, target_platform) |
| build_archive = BuildArchive.Create( |
| builder_type, target_arch=target_arch, target_platform=target_platform, |
| extra_src=extra_src) |
| @@ -70,7 +72,9 @@ class BuildArchive(object): |
| @staticmethod |
| def Create(builder_type, target_arch='ia32', target_platform='chromium', |
| - extra_src=None): |
| + extra_src=None): |
| + logging.info('Creating BuildArchive, type "%s", arch "%s", platform "%s".', |
| + builder_type, target_arch, target_platform) |
|
prasadv
2015/01/27 22:54:31
Nit: indentation
|
| if builder_type == PERF_BUILDER: |
| return PerfBuildArchive(target_arch, target_platform) |
| if builder_type == FULL_BUILDER: |
| @@ -414,4 +418,3 @@ def Main(argv): |
| if __name__ == '__main__': |
| sys.exit(Main(sys.argv)) |
| - |