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/DataSourceEc2.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/DataSourceEc2.py')
-rw-r--r-- | cloudinit/DataSourceEc2.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cloudinit/DataSourceEc2.py b/cloudinit/DataSourceEc2.py index eb0036a5..9c385c6c 100644 --- a/cloudinit/DataSourceEc2.py +++ b/cloudinit/DataSourceEc2.py @@ -17,9 +17,8 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. import DataSource -log = DataSource.log -from cloudinit import seeddir +from cloudinit import seeddir, log import cloudinit.util as util import socket import urllib2 |