diff options
author | Scott Moser <smoser@ubuntu.com> | 2014-07-16 10:25:03 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2014-07-16 10:25:03 -0400 |
commit | e11e7c2d1e908d99179f0382da4ac0b4d49bd7aa (patch) | |
tree | 7db23bfead6d87cc36528ba46bdcf811b8558a6a /cloudinit/importer.py | |
parent | 8546c80568059601362f41261993479b074332a3 (diff) | |
parent | 1c509f3d9340bec9357428bd9f84dd290c642cff (diff) | |
download | vyos-cloud-init-e11e7c2d1e908d99179f0382da4ac0b4d49bd7aa.tar.gz vyos-cloud-init-e11e7c2d1e908d99179f0382da4ac0b4d49bd7aa.zip |
Less noisy logs, and improve some log messages.
Removes some of the log messages that are not really meaningful.
Diffstat (limited to 'cloudinit/importer.py')
-rw-r--r-- | cloudinit/importer.py | 4 |
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 |