summaryrefslogtreecommitdiff
path: root/chef/lib/chef/application.rb
diff options
context:
space:
mode:
authorChristopher Brown <cb@opscode.com>2009-12-10 16:35:59 -0800
committerChristopher Brown <cb@opscode.com>2009-12-10 16:35:59 -0800
commit308296851ad79922779b4968a8e64499e6aea069 (patch)
treec8ac4a59ce40e8b15b98ab74996271c6206618f8 /chef/lib/chef/application.rb
parentaa9e71ea425ed25ccb2a5c8b30f950160909c018 (diff)
downloadchef-308296851ad79922779b4968a8e64499e6aea069.tar.gz
fix log level stuff, mkdir_p, and downto idiom
Diffstat (limited to 'chef/lib/chef/application.rb')
-rw-r--r--chef/lib/chef/application.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/chef/lib/chef/application.rb b/chef/lib/chef/application.rb
index 8e003b4e00..b992bc1c59 100644
--- a/chef/lib/chef/application.rb
+++ b/chef/lib/chef/application.rb
@@ -68,7 +68,7 @@ class Chef::Application
# Initialize and configure the logger
def configure_logging
Chef::Log.init(Chef::Config[:log_location])
- Chef::Log.level(Chef::Config[:log_level])
+ Chef::Log.level = Chef::Config[:log_level]
end
# Called prior to starting the application, by the run method