Merge "Log full exception chain of chart deploy exceptions"

This commit is contained in:
Zuul 2018-11-30 19:52:55 +00:00 committed by Gerrit Code Review
commit 709eb9ec9b
1 changed files with 2 additions and 2 deletions

View File

@ -228,8 +228,8 @@ class Armada(object):
name = chart['chart_name']
try:
result = get_result()
except Exception as e:
LOG.error('Chart deploy [%s] failed: %s', name, e)
except Exception:
LOG.exception('Chart deploy [{}] failed'.format(name))
failures.append(name)
return True
else: