Set task run and finish messages to info

Change-Id: I449b18bb759170ef9d131a2ddf3b534a348fc5c5
This commit is contained in:
Dmitry Ilyin 2016-09-19 13:51:44 -05:00
parent 67896b9a59
commit 686a1550a2
2 changed files with 2 additions and 1 deletions

View File

@ -48,6 +48,7 @@ module Astute
}]
})
else
info "Finished task: #{task} with status: #{status}"
setup_node_status
report_node_status
end

View File

@ -273,7 +273,7 @@ module Deployment
# @param [Deployment::Task] task
# @abstract Should be implemented in a subclass
def run(task)
debug "Run task: #{task}"
info "Run task: #{task}"
raise Deployment::NotImplemented, 'This method is abstract and should be implemented in a subclass'
end