diff --git a/watcher/applier/actions/migration.py b/watcher/applier/actions/migration.py index 9763c3e6e..07eb83a3a 100644 --- a/watcher/applier/actions/migration.py +++ b/watcher/applier/actions/migration.py @@ -124,7 +124,8 @@ class Migrate(base.BaseAction): LOG.debug("Nova client exception occurred while live " "migrating instance %s.Exception: %s" % (self.instance_uuid, e)) - except Exception: + except Exception as e: + LOG.exception(e) LOG.critical("Unexpected error occurred. Migration failed for " "instance %s. Leaving instance on previous " "host.", self.instance_uuid)