summaryrefslogtreecommitdiff
path: root/lib/chef/client.rb
diff options
context:
space:
mode:
authortyler-ball <tyleraball@gmail.com>2014-11-05 11:25:05 -0800
committertyler-ball <tyleraball@gmail.com>2014-12-17 18:47:25 -0800
commit5647ffbafcf22cd54b1edc0b02926aca90b9099c (patch)
treeeca29649eb4ab988796d34aa052903b02007d0f0 /lib/chef/client.rb
parent9f3390ffe26abbe54b51aee19a78cf2778b9b340 (diff)
downloadchef-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.rb6
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