diff options
author | Noah Kantrowitz <noah@coderanger.net> | 2015-09-25 16:05:06 -0700 |
---|---|---|
committer | Noah Kantrowitz <noah@coderanger.net> | 2015-09-25 16:05:06 -0700 |
commit | 47fe94f8fafab031065dfe8f46dbbb4b3f90ce47 (patch) | |
tree | e89fcd7fb8f7031aadc62ab79ef0438aabd97c0f /lib | |
parent | 2c083878547343a4ed423e7d20ecbf6059285721 (diff) | |
download | chef-47fe94f8fafab031065dfe8f46dbbb4b3f90ce47.tar.gz |
I think this was a bad search-and-replace, causes an infinite loop.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/chef/formatters/base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/formatters/base.rb b/lib/chef/formatters/base.rb index e4056a00fc..d3756ef00c 100644 --- a/lib/chef/formatters/base.rb +++ b/lib/chef/formatters/base.rb @@ -213,7 +213,7 @@ class Chef end def deprecation(message, location=caller(2..2)[0]) - Chef.log_deprecation("#{message} at #{location}") + Chef::Log.deprecation("#{message} at #{location}") end end |