summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--heat/common/urlfetch.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/heat/common/urlfetch.py b/heat/common/urlfetch.py
index 9cec56323..6a40d895b 100644
--- a/heat/common/urlfetch.py
+++ b/heat/common/urlfetch.py
@@ -75,4 +75,5 @@ def get(url, allowed_schemes=('http', 'https')):
return result
except exceptions.RequestException as ex:
- raise URLFetchError(_('Failed to retrieve template: %s') % ex)
+ LOG.info(_LI('Failed to retrieve template: %s') % ex)
+ raise URLFetchError(_('Failed to retrieve template from %s') % url)