Add log message for successful makostack processing

This commit is contained in:
Erik Johnson 2017-02-28 11:45:22 -06:00
parent 3940321462
commit f951266944

View file

@ -459,6 +459,7 @@ def _process_stack_cfg(cfg, stack, minion_id, pillar, namespace):
for sub in namespace.split(':')[::-1]:
obj = {sub: obj}
stack = _merge_dict(stack, obj)
log.info('Stack template "{0}" parsed'.format(path))
except exceptions.TopLevelLookupException as e:
log.info('Stack template "{0}" not found.'.format(path))
continue