summaryrefslogtreecommitdiff
path: root/lib/chef/http.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/http.rb')
-rw-r--r--lib/chef/http.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/chef/http.rb b/lib/chef/http.rb
index 162998b7f3..11a1f426c3 100644
--- a/lib/chef/http.rb
+++ b/lib/chef/http.rb
@@ -376,6 +376,9 @@ class Chef
headers = build_headers(method, url, base_headers, body)
client = http_client(url)
return_value = nil
+
+ Kernel.puts "URL: #{url}"
+
if block_given?
request, response = client.request(method, url, body, headers, &response_handler)
else