diff options
author | Scott Moser <smoser@ubuntu.com> | 2011-02-04 16:56:17 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2011-02-04 16:56:17 -0500 |
commit | 38b21ce3c0972d0659c4a4a9fb22640ff1d3f439 (patch) | |
tree | 742de5207f8158812b55e3eb5ac407ce58bcd04e /cloudinit/DataSource.py | |
parent | bafe47bc913330b16cb1296ffbfe97596b5c4cfc (diff) | |
download | vyos-cloud-init-38b21ce3c0972d0659c4a4a9fb22640ff1d3f439.tar.gz vyos-cloud-init-38b21ce3c0972d0659c4a4a9fb22640ff1d3f439.zip |
fix logging in DataSource modules
Previous logging was getting 'None' set in the DataSource collections.
Thus, 'log.debug' would throw error. I think it is proper to pull in
the base cloudinit's log.
Diffstat (limited to 'cloudinit/DataSource.py')
-rw-r--r-- | cloudinit/DataSource.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/cloudinit/DataSource.py b/cloudinit/DataSource.py index 43f66eff..0bf17b45 100644 --- a/cloudinit/DataSource.py +++ b/cloudinit/DataSource.py @@ -22,15 +22,6 @@ DEP_NETWORK = "NETWORK" import UserDataHandler as ud -log = None -def setlog(log_in=None, name="DataSource"): - log = log_in - if log is None: - class NullHandler(logging.Handler): - def emit(self,record): pass - log = logging.getLogger(name) - log.addHandler(NullHandler()) - class DataSource: userdata = None metadata = None |