summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@yahoo-inc.com>2012-06-29 14:01:26 -0700
committerJoshua Harlow <harlowja@yahoo-inc.com>2012-06-29 14:01:26 -0700
commit196c5e770ed1613803646a0177e144a3a4c2813e (patch)
tree9201d3c00cbf9c726b4448ad8a06b7d02315d75b
parentac2e5d322e92a9cdf5a94d4cc4f7f6daa1137f07 (diff)
downloadvyos-cloud-init-196c5e770ed1613803646a0177e144a3a4c2813e.tar.gz
vyos-cloud-init-196c5e770ed1613803646a0177e144a3a4c2813e.zip
Remove logging of module/init configs
-rw-r--r--cloudinit/stages.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cloudinit/stages.py b/cloudinit/stages.py
index ef89e77c..2f175934 100644
--- a/cloudinit/stages.py
+++ b/cloudinit/stages.py
@@ -144,7 +144,7 @@ class Init(object):
# None check so that we don't keep on re-loading if empty
if self._cfg is None:
self._cfg = self._read_cfg(extra_fns)
- LOG.debug("Loaded 'init' config %s", self._cfg)
+ # LOG.debug("Loaded 'init' config %s", self._cfg)
def _read_cfg(self, extra_fns):
try:
@@ -414,7 +414,7 @@ class Modules(object):
additional_fns=self.cfg_files,
base_cfg=self.init.cfg)
self._cached_cfg = merger.cfg
- LOG.debug("Loading 'module' config %s", self._cached_cfg)
+ # LOG.debug("Loading 'module' config %s", self._cached_cfg)
# Only give out a copy so that others can't modify this...
return copy.deepcopy(self._cached_cfg)