summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChiradeep Vittal <chiradeep@chiradeep-lt2>2010-12-14 16:48:44 -0800
committerChiradeep Vittal <chiradeep@chiradeep-lt2>2010-12-14 16:48:44 -0800
commit82ccd2b656a364251aeecbf4c31cd062af6513f0 (patch)
treeeeb1f8df9a30381c675782fc699a0937defd5560
parent38c236ab5f0fa54f9837d3407f3bdbb3abd1931b (diff)
downloadnova-82ccd2b656a364251aeecbf4c31cd062af6513f0.tar.gz
nova-82ccd2b656a364251aeecbf4c31cd062af6513f0.tar.xz
nova-82ccd2b656a364251aeecbf4c31cd062af6513f0.zip
remove some logging
-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: