summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKei Masumoto <masumotok@nttdata.co.jp>2011-04-09 02:39:18 +0900
committerKei Masumoto <masumotok@nttdata.co.jp>2011-04-09 02:39:18 +0900
commit0cf2a52218fbb801a35e5dd73e146c6c37e218e2 (patch)
tree692172ef30bffac1878d4032192ec2b362ac67b2
parentd7e8d91d6bc4954f2d256f57e34444b5bd170ab0 (diff)
downloadnova-0cf2a52218fbb801a35e5dd73e146c6c37e218e2.tar.gz
nova-0cf2a52218fbb801a35e5dd73e146c6c37e218e2.tar.xz
nova-0cf2a52218fbb801a35e5dd73e146c6c37e218e2.zip
fixed LOG level and log message phrase
-rw-r--r--nova/compute/manager.py5
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: