diff options
Diffstat (limited to 'lib/chef/log.rb')
-rw-r--r-- | lib/chef/log.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/log.rb b/lib/chef/log.rb index 3f77158579..908a6b2b9c 100644 --- a/lib/chef/log.rb +++ b/lib/chef/log.rb @@ -18,11 +18,11 @@ # limitations under the License. require "logger" -require "chef/monologger" -require "chef/exceptions" +require_relative "monologger" +require_relative "exceptions" require "mixlib/log" require "chef/log/syslog" unless RUBY_PLATFORM =~ /mswin|mingw|windows/ -require "chef/log/winevt" +require_relative "log/winevt" class Chef class Log |