diff options
| -rwxr-xr-x | nova/virt/driver.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/virt/driver.py b/nova/virt/driver.py index e2f9588a4..d0a670a3e 100755 --- a/nova/virt/driver.py +++ b/nova/virt/driver.py @@ -958,8 +958,8 @@ def load_compute_driver(virtapi, compute_driver=None): compute_driver, virtapi) return utils.check_isinstance(driver, ComputeDriver) - except ImportError as e: - LOG.error(_("Unable to load the virtualization driver: %s") % (e)) + except ImportError: + LOG.exception(_("Unable to load the virtualization driver")) sys.exit(1) |
