Merge "Use debug instead of warning for pipeline implement error"

This commit is contained in:
Jenkins 2016-06-13 20:10:38 +00:00 committed by Gerrit Code Review
commit a2eaac82d4

View File

@ -91,7 +91,7 @@ class Pipeline(object):
sstage = six.text_type(stage)
msgtmpl = _(u"Stage %(stage)s does not "
"implement %(method)s")
LOG.warning(msgtmpl, {'stage': sstage, 'method': method})
LOG.debug(msgtmpl, {'stage': sstage, 'method': method})
continue
tmp = target(*args, **kwargs)