summaryrefslogtreecommitdiff
path: root/lib/chef/run_context.rb
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2015-10-18 20:44:09 -0700
committerTim Smith <tsmith84@gmail.com>2015-10-18 20:44:09 -0700
commit70c5f6f4bb784c896ac288e2edb5d4997682906b (patch)
tree9a5bc169dc2e9534aa6124db3f7afcecb9bc64f2 /lib/chef/run_context.rb
parent1b2786a02598ae3f2a98ad74bba415d8ffb62bd0 (diff)
downloadchef-70c5f6f4bb784c896ac288e2edb5d4997682906b.tar.gz
Unnecessary capitalization
Diffstat (limited to 'lib/chef/run_context.rb')
-rw-r--r--lib/chef/run_context.rb4
1 files changed, 2 insertions, 2 deletions
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