Log full exception chain of chart deploy exceptions

Change-Id: Ice563ed365e57d0521f6e0d319651a27805f1eee
This commit is contained in:
Sean Eagan 2018-11-16 14:23:58 -06:00
parent a64d435de8
commit 07adcfd9c4
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: