summaryrefslogtreecommitdiff
path: root/cloudinit/distros/__init__.py
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@yahoo-inc.com>2012-09-28 21:04:00 -0700
committerJoshua Harlow <harlowja@yahoo-inc.com>2012-09-28 21:04:00 -0700
commit9a252b3a41ad757587cba729b31079c04b253faa (patch)
treea83436fb61b730858a48e67ff00309d9b8fd6316 /cloudinit/distros/__init__.py
parent9e7320df7a6fb6f1e9a5401735c471467b1fe365 (diff)
downloadvyos-cloud-init-9a252b3a41ad757587cba729b31079c04b253faa.tar.gz
vyos-cloud-init-9a252b3a41ad757587cba729b31079c04b253faa.zip
Update the log statement used here to be
a little more relevant.
Diffstat (limited to 'cloudinit/distros/__init__.py')
-rw-r--r--cloudinit/distros/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/distros/__init__.py b/cloudinit/distros/__init__.py
index 301eeed2..500147c6 100644
--- a/cloudinit/distros/__init__.py
+++ b/cloudinit/distros/__init__.py
@@ -248,7 +248,7 @@ class Distro(object):
if util.is_user(name):
LOG.warn("User %s already exists, skipping." % name)
else:
- LOG.debug("Creating name %s" % name)
+ LOG.debug("Adding user named %s", name)
try:
util.subp(adduser_cmd, logstring=x_adduser_cmd)
except Exception as e: