From 452ea086beb8b28b41f5ccc610f4e5433010e35b Mon Sep 17 00:00:00 2001
From: Scott Moser <smoser@ubuntu.com>
Date: Wed, 22 Jul 2015 15:14:33 -0400
Subject: remove some overly verbose log messages

---
 cloudinit/config/cc_disk_setup.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cloudinit/config/cc_disk_setup.py b/cloudinit/config/cc_disk_setup.py
index 92fa7a94..d5b0d1d7 100644
--- a/cloudinit/config/cc_disk_setup.py
+++ b/cloudinit/config/cc_disk_setup.py
@@ -648,7 +648,7 @@ def mkpart(device, definition):
                 table_type: Which partition table to use, defaults to MBR
                 device: the device to work on.
     """
-    LOG.debug('Ensuring that we have a real device, not a symbolic link')
+    # ensure that we get a real device rather than a symbolic link
     device = os.path.realpath(device)
 
     LOG.debug("Checking values for %s definition" % device)
@@ -747,7 +747,7 @@ def mkfs(fs_cfg):
     fs_replace = fs_cfg.get('replace_fs', False)
     overwrite = fs_cfg.get('overwrite', False)
 
-    LOG.debug('Ensuring that we have a real device, not a symbolic link')
+    # ensure that we get a real device rather than a symbolic link
     device = os.path.realpath(device)
 
     # This allows you to define the default ephemeral or swap
-- 
cgit v1.2.3