Merge "Debug message leads to (n*m) log growth."

This commit is contained in:
Jenkins 2015-12-03 04:59:49 +00:00 committed by Gerrit Code Review
commit daf8be4480

@ -258,8 +258,6 @@ class YamlParser(object):
for (k, v) in project.items():
tmpk = '{{{0}}}'.format(k)
if tmpk not in template_name:
logger.debug("Variable %s not in name %s, rejecting from job"
" matrix expansion.", tmpk, template_name)
continue
if type(v) == list:
dimensions.append(zip([k] * len(v), v))