diff options
author | Kei Masumoto <masumotok@nttdata.co.jp> | 2011-04-09 02:39:18 +0900 |
---|---|---|
committer | Kei Masumoto <masumotok@nttdata.co.jp> | 2011-04-09 02:39:18 +0900 |
commit | 0cf2a52218fbb801a35e5dd73e146c6c37e218e2 (patch) | |
tree | 692172ef30bffac1878d4032192ec2b362ac67b2 | |
parent | d7e8d91d6bc4954f2d256f57e34444b5bd170ab0 (diff) | |
download | nova-0cf2a52218fbb801a35e5dd73e146c6c37e218e2.tar.gz nova-0cf2a52218fbb801a35e5dd73e146c6c37e218e2.tar.xz nova-0cf2a52218fbb801a35e5dd73e146c6c37e218e2.zip |
fixed LOG level and log message phrase
-rw-r--r-- | nova/compute/manager.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/nova/compute/manager.py b/nova/compute/manager.py index 847c3655a..c7d86e27b 100644 --- a/nova/compute/manager.py +++ b/nova/compute/manager.py @@ -1094,9 +1094,8 @@ class ComputeManager(manager.SchedulerDependentManager): # A situation which db record exists, but no instance" # sometimes occurs while live-migration at src compute, # this case should be ignored. - LOG.info(_("the instance '%(name)s' is not found in hypervisor" - ", while db record is found. But not synchronize " - "since it is migrating.") % locals()) + LOG.debug(_("Ignoring %(name)s, as it's currently being " + "migrated.") % locals()) continue if vm_state != db_state: |