summaryrefslogtreecommitdiff
path: root/cloudinit/importer.py
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@yahoo-inc.com>2014-07-15 15:09:08 -0700
committerJoshua Harlow <harlowja@yahoo-inc.com>2014-07-15 15:09:08 -0700
commita3033269ba38057716d93e65a77a8257acc628d5 (patch)
tree232656524435b141a0d0dc80d1adcd8b3f4f7e69 /cloudinit/importer.py
parent8546c80568059601362f41261993479b074332a3 (diff)
downloadvyos-cloud-init-a3033269ba38057716d93e65a77a8257acc628d5.tar.gz
vyos-cloud-init-a3033269ba38057716d93e65a77a8257acc628d5.zip
Remove some of the more useless debug logs
Diffstat (limited to 'cloudinit/importer.py')
-rw-r--r--cloudinit/importer.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/cloudinit/importer.py b/cloudinit/importer.py
index a094141a..a1929137 100644
--- a/cloudinit/importer.py
+++ b/cloudinit/importer.py
@@ -45,8 +45,6 @@ def find_module(base_name, search_paths, required_attrs=None):
real_path.append(base_name)
full_path = '.'.join(real_path)
real_paths.append(full_path)
- LOG.debug("Looking for modules %s that have attributes %s",
- real_paths, required_attrs)
for full_path in real_paths:
mod = None
try:
@@ -62,6 +60,4 @@ def find_module(base_name, search_paths, required_attrs=None):
found_attrs += 1
if found_attrs == len(required_attrs):
found_places.append(full_path)
- LOG.debug("Found %s with attributes %s in %s", base_name,
- required_attrs, found_places)
return found_places