diff options
author | tyler-ball <tyleraball@gmail.com> | 2014-11-05 11:25:05 -0800 |
---|---|---|
committer | tyler-ball <tyleraball@gmail.com> | 2014-12-17 18:47:25 -0800 |
commit | 5647ffbafcf22cd54b1edc0b02926aca90b9099c (patch) | |
tree | eca29649eb4ab988796d34aa052903b02007d0f0 /lib/chef/client.rb | |
parent | 9f3390ffe26abbe54b51aee19a78cf2778b9b340 (diff) | |
download | chef-5647ffbafcf22cd54b1edc0b02926aca90b9099c.tar.gz |
Adding first round of formatter integration - STDOUT doc formatter
Diffstat (limited to 'lib/chef/client.rb')
-rw-r--r-- | lib/chef/client.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/client.rb b/lib/chef/client.rb index 3818f9fad6..bf8c83eee2 100644 --- a/lib/chef/client.rb +++ b/lib/chef/client.rb @@ -344,12 +344,12 @@ class Chef def run_audits(run_context) audit_exception = nil begin - @events.audit_start(run_context) + @events.audit_phase_start(run_context) auditor = Chef::Audit::Runner.new(run_context) auditor.run - @events.audit_complete + @events.audit_phase_complete rescue Exception => e - @events.audit_failed(e) + @events.audit_phase_failed(e) audit_exception = e end audit_exception |