Implement action arguments logging

This commit is contained in:
Thibault Jouan
2014-09-17 00:22:05 +00:00
parent 3cb195c9a0
commit 563bf9cccf
4 changed files with 39 additions and 8 deletions

View File

@@ -20,7 +20,7 @@ module Producer
if task.condition_met?
env.log "Task: `#{task}' applying..."
task.actions.each do |e|
env.log " action: #{e} applying"
env.log " action: #{e}"
e.apply unless env.dry_run?
end
else