git cl try: clarify where the default set of bots is coming from.
R=sergiyb@chromium.org,dsinclair@chromium.org
BUG=
Review-Url: https://codereview.chromium.org/2044663003
diff --git a/git_cl.py b/git_cl.py
index 416a4e7..29331d6 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -4462,7 +4462,10 @@
# Skip presubmit builders, because these will fail without LGTM.
masters.setdefault(master, {})[builder] = ['defaulttests']
if masters:
+ print('Loaded default bots from CQ config (%s)' % cq_cfg)
return masters
+ else:
+ print('CQ config exists (%s) but has no try bots listed' % cq_cfg)
if not options.bot:
parser.error('No default try builder to try, use --bot')