summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Mundrawala <jdmundrawala@gmail.com>2014-07-20 19:41:30 -0700
committerJay Mundrawala <jdmundrawala@gmail.com>2014-10-22 13:03:13 -0700
commit3847cc6cf1516d5e75b51d65d66872e7d15a3706 (patch)
tree3769393098b93b211f36b22a4788f8fbb09c6a80
parent937db2df6a7a44b9a4c1a9f7a65508b15e1115a1 (diff)
downloadchef-3847cc6cf1516d5e75b51d65d66872e7d15a3706.tar.gz
Added base class for event logging
-rw-r--r--lib/chef/logging/event_log.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/chef/logging/event_log.rb b/lib/chef/logging/event_log.rb
new file mode 100644
index 0000000000..00841272a3
--- /dev/null
+++ b/lib/chef/logging/event_log.rb
@@ -0,0 +1,8 @@
+require 'chef/event_dispatch/base'
+
+class Chef
+ module Logging
+ class EventLogger < EventDispatch::Base
+ end
+ end
+end