summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2021-08-23 20:07:44 -0700
committerTim Smith <tsmith84@gmail.com>2021-08-24 15:14:26 -0700
commit5ee572cba32626314f1be09a3cf74370a046298c (patch)
tree3f9135522d63aaea73c7152f2e19d18a5c980334
parenta66befe59c2a15c2be31573dcc7b3de76adc4d4d (diff)
downloadchef-5ee572cba32626314f1be09a3cf74370a046298c.tar.gz
Consistent capitalizing in the loggers
Also use the word Policyfile Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/formatters/doc.rb6
-rw-r--r--lib/chef/formatters/minimal.rb4
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/chef/formatters/doc.rb b/lib/chef/formatters/doc.rb
index 2a3f9faef3..a739889022 100644
--- a/lib/chef/formatters/doc.rb
+++ b/lib/chef/formatters/doc.rb
@@ -119,12 +119,12 @@ class Chef
def node_load_completed(node, expanded_run_list, config); end
def policyfile_loaded(policy)
- puts_line "Using policy '#{policy["name"]}' at revision '#{policy["revision_id"]}'"
+ puts_line "Using Policyfile '#{policy["name"]}' at revision '#{policy["revision_id"]}'"
end
# Called before the cookbook collection is fetched from the server.
def cookbook_resolution_start(expanded_run_list)
- puts_line "resolving cookbooks for run list: #{expanded_run_list.inspect}"
+ puts_line "Resolving Cookbooks for run list: #{expanded_run_list.inspect}"
end
# Called when there is an error getting the cookbook collection from the
@@ -168,7 +168,7 @@ class Chef
# Called when starting to collect gems from the cookbooks
def cookbook_gem_start(gems)
- puts_line "Installing Cookbook Gems:"
+ puts_line "Installing Cookbook Gem Dependencies:"
indent
end
diff --git a/lib/chef/formatters/minimal.rb b/lib/chef/formatters/minimal.rb
index 6a067c4f86..123640b03f 100644
--- a/lib/chef/formatters/minimal.rb
+++ b/lib/chef/formatters/minimal.rb
@@ -71,7 +71,7 @@ class Chef
# Called before the cookbook collection is fetched from the server.
def cookbook_resolution_start(expanded_run_list)
- puts "resolving cookbooks for run list: #{expanded_run_list.inspect}"
+ puts "Resolving cookbooks for run list: #{expanded_run_list.inspect}"
end
# Called when there is an error getting the cookbook collection from the
@@ -114,7 +114,7 @@ class Chef
# Called when cookbook loading starts.
def library_load_start(file_count)
- puts "Compiling cookbooks"
+ puts "Compiling Cookbooks"
end
# Called after a file in a cookbook is loaded.