Log traversal ID when beginning

At the beginning of a convergence traversal, log the traversal ID along
with the dependency graph for the traversal. This could be useful in
debugging. Also, log it at the DEBUG, not INFO level.

Change-Id: Ic7c567b6f949bdec9b3cface4fa07748fbe585eb
This commit is contained in:
Zane Bitter 2018-04-17 20:38:22 -04:00
parent 7271252add
commit 6f1e6458cf
1 changed files with 2 additions and 2 deletions

View File

@ -1364,8 +1364,8 @@ class Stack(collections.Mapping):
'action': self.action})
return
LOG.info('convergence_dependencies: %s',
self.convergence_dependencies)
LOG.debug('Starting traversal %s with dependencies: %s',
self.current_traversal, self.convergence_dependencies)
# create sync_points for resources in DB
for rsrc_id, is_update in self.convergence_dependencies: