summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nova/virt/images.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/nova/virt/images.py b/nova/virt/images.py
index b322f3eb2..69838ac5b 100644
--- a/nova/virt/images.py
+++ b/nova/virt/images.py
@@ -70,7 +70,6 @@ def _fetch_image_no_curl(url, path, headers):
def _fetch_s3_image(image, path, user, project):
url = image_url(image)
- logging.debug("About to retrieve %s and place it in %s", url, path)
# This should probably move somewhere else, like e.g. a download_as
# method on User objects and at the same time get rewritten to use
@@ -98,7 +97,6 @@ def _fetch_s3_image(image, path, user, project):
def _fetch_local_image(image, path, user, project):
source = _image_path(os.path.join(image, 'image'))
- logging.debug("About to copy %s to %s", source, path)
if sys.platform.startswith('win'):
return shutil.copy(source, path)
else: