diff options
author | harlowja <harlowja@virtualbox.rhel> | 2012-06-21 08:38:12 -0700 |
---|---|---|
committer | harlowja <harlowja@virtualbox.rhel> | 2012-06-21 08:38:12 -0700 |
commit | f1cab0d88cbcfa7eaa698db7dcc252bb6543d6c0 (patch) | |
tree | 48ecd1dc9aacdd353d2d40e8617e40b87dd47288 /cloudinit/sources/DataSourceEc2.py | |
parent | f7e638f6f58188cd4be1921cb045608f3c00d9c4 (diff) | |
download | vyos-cloud-init-f1cab0d88cbcfa7eaa698db7dcc252bb6543d6c0.tar.gz vyos-cloud-init-f1cab0d88cbcfa7eaa698db7dcc252bb6543d6c0.zip |
1. Move all info() logging methods to debug()
2. Adjust comment on sources list from depends
3. For the /etc/timezone 'writing', add a header that says created by cloud-init
Diffstat (limited to 'cloudinit/sources/DataSourceEc2.py')
-rw-r--r-- | cloudinit/sources/DataSourceEc2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/sources/DataSourceEc2.py b/cloudinit/sources/DataSourceEc2.py index 0598dfa2..cb460de1 100644 --- a/cloudinit/sources/DataSourceEc2.py +++ b/cloudinit/sources/DataSourceEc2.py @@ -169,7 +169,7 @@ class DataSourceEc2(sources.DataSource): timeout=timeout, status_cb=LOG.warn) if url: - LOG.info("Using metadata source: '%s'", url2base[url]) + LOG.debug("Using metadata source: '%s'", url2base[url]) else: LOG.critical("Giving up on md from %s after %s seconds", urls, int(time.time() - start_time)) |