Browse Source

remove logging

Gabriel Adrian Samfira 9 years ago
parent
commit
6b29fa7f9e
1 changed files with 0 additions and 2 deletions
  1. 0 2
      coriolis/utils.py

+ 0 - 2
coriolis/utils.py

@@ -103,11 +103,9 @@ def parse_os_release(ssh):
     os_release_info = exec_ssh_cmd(
         ssh, "[ -f '/etc/os-release' ] && cat /etc/os-release || true").decode()
     info = {}
-    LOG.info("got os_release_info: %r" % os_release_info)
     for line in os_release_info.splitlines():
         if "=" not in line:
             continue
-        LOG.info("parsing line: %s" % line)
         k, v = line.split("=")
         info[k] = v.strip('"')
     if info.get("ID") and info.get("VERSION_ID"):