diff options
author | Tim Smith <tsmith84@gmail.com> | 2015-10-18 20:44:09 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2015-10-18 20:44:09 -0700 |
commit | 70c5f6f4bb784c896ac288e2edb5d4997682906b (patch) | |
tree | 9a5bc169dc2e9534aa6124db3f7afcecb9bc64f2 | |
parent | 1b2786a02598ae3f2a98ad74bba415d8ffb62bd0 (diff) | |
download | chef-70c5f6f4bb784c896ac288e2edb5d4997682906b.tar.gz |
Unnecessary capitalization
-rw-r--r-- | lib/chef/rest.rb | 2 | ||||
-rw-r--r-- | lib/chef/run_context.rb | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/rest.rb b/lib/chef/rest.rb index f87cec9b76..4106a01077 100644 --- a/lib/chef/rest.rb +++ b/lib/chef/rest.rb @@ -166,7 +166,7 @@ class Chef def retriable_http_request(method, url, req_body, headers) rest_request = Chef::HTTP::HTTPRequest.new(method, url, req_body, headers) - Chef::Log.debug("Sending HTTP Request via #{method} to #{url.host}:#{url.port}#{rest_request.path}") + Chef::Log.debug("Sending HTTP request via #{method} to #{url.host}:#{url.port}#{rest_request.path}") retrying_http_errors(url) do yield rest_request diff --git a/lib/chef/run_context.rb b/lib/chef/run_context.rb index b2a4b13ea4..f7ab88f7e0 100644 --- a/lib/chef/run_context.rb +++ b/lib/chef/run_context.rb @@ -268,7 +268,7 @@ class Chef # @see DSL::IncludeRecipe#load_recipe # def load_recipe(recipe_name, current_cookbook: nil) - Chef::Log.debug("Loading Recipe #{recipe_name} via include_recipe") + Chef::Log.debug("Loading recipe #{recipe_name} via include_recipe") cookbook_name, recipe_short_name = Chef::Recipe.parse_recipe_name(recipe_name, current_cookbook: current_cookbook) @@ -308,7 +308,7 @@ ERROR_MESSAGE raise Chef::Exceptions::RecipeNotFound, "could not find recipe file #{recipe_file}" end - Chef::Log.debug("Loading Recipe File #{recipe_file}") + Chef::Log.debug("Loading recipe file #{recipe_file}") recipe = Chef::Recipe.new('@recipe_files', recipe_file, self) recipe.from_file(recipe_file) recipe |