summaryrefslogtreecommitdiff
path: root/lib/chef/cookbook_site_streaming_uploader.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/cookbook_site_streaming_uploader.rb')
-rw-r--r--lib/chef/cookbook_site_streaming_uploader.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/cookbook_site_streaming_uploader.rb b/lib/chef/cookbook_site_streaming_uploader.rb
index c082710da3..e4b45532f0 100644
--- a/lib/chef/cookbook_site_streaming_uploader.rb
+++ b/lib/chef/cookbook_site_streaming_uploader.rb
@@ -41,19 +41,19 @@ class Chef
tmp_cookbook_dir = tmp_cookbook_path.path
File.unlink(tmp_cookbook_dir)
FileUtils.mkdir_p(tmp_cookbook_dir)
- Chef::Log.debug("Staging at #{tmp_cookbook_dir}")
+ Chef::Log.trace("Staging at #{tmp_cookbook_dir}")
checksums_to_on_disk_paths = cookbook.checksums
cookbook.each_file do |manifest_record|
path_in_cookbook = manifest_record[:path]
on_disk_path = checksums_to_on_disk_paths[manifest_record[:checksum]]
dest = File.join(tmp_cookbook_dir, cookbook.name.to_s, path_in_cookbook)
FileUtils.mkdir_p(File.dirname(dest))
- Chef::Log.debug("Staging #{on_disk_path} to #{dest}")
+ Chef::Log.trace("Staging #{on_disk_path} to #{dest}")
FileUtils.cp(on_disk_path, dest)
end
# First, generate metadata
- Chef::Log.debug("Generating metadata")
+ Chef::Log.trace("Generating metadata")
kcm = Chef::Knife::CookbookMetadata.new
kcm.config[:cookbook_path] = [ tmp_cookbook_dir ]
kcm.name_args = [ cookbook.name.to_s ]