diff options
author | Jay Mundrawala <jdmundrawala@gmail.com> | 2014-07-31 09:30:13 -0700 |
---|---|---|
committer | Jay Mundrawala <jdmundrawala@gmail.com> | 2014-10-22 13:03:17 -0700 |
commit | 53dc0062d0d3095660aa48b277476b06ca03fbfe (patch) | |
tree | 8b043b0267e84e6370dee3528220f828af4cccf2 /lib | |
parent | 1b644bebe4c6870f8d0fe5c95f013b33823f45c8 (diff) | |
download | chef-53dc0062d0d3095660aa48b277476b06ca03fbfe.tar.gz |
Changed logging location
Diffstat (limited to 'lib')
-rw-r--r-- | lib/chef/logging/windows_eventlog.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/logging/windows_eventlog.rb b/lib/chef/logging/windows_eventlog.rb index 8609d95846..f4536a9ebe 100644 --- a/lib/chef/logging/windows_eventlog.rb +++ b/lib/chef/logging/windows_eventlog.rb @@ -15,10 +15,10 @@ class Chef LOG_CATEGORY_ID = 11001 # Since we must install the event logger, this is not really configurable - SOURCE = 'RubyMsg' + SOURCE = 'Chef' def initialize - @eventlog = EventLog::open('EventWriter') + @eventlog = EventLog::open('Application') end def run_start(version) |