Changing scheduler sync event from INFO to DEBUG

We don't need to log every single sync event, this can get
pretty spammy, especially when you have computes in the hundreds.

Change-Id: I958005b6a3e2b90ca6fe6046e4dbcc5991581245
(cherry picked from commit e86ac82bbd)
This commit is contained in:
Erik Olof Gunnar Andersson 2018-05-04 12:25:51 -07:00 committed by Dirk Mueller
parent de7a8f9e44
commit 1c56895dc1
1 changed files with 2 additions and 2 deletions

View File

@ -835,8 +835,8 @@ class HostManager(object):
"Re-created its InstanceList."), host_name)
return
host_info["updated"] = True
LOG.info(_LI("Successfully synced instances from host '%s'."),
host_name)
LOG.debug("Successfully synced instances from host '%s'.",
host_name)
else:
self._recreate_instance_info(context, host_name)
LOG.info(_LI("Received a sync request from an unknown host '%s'. "