summaryrefslogtreecommitdiffstats
path: root/nova
diff options
context:
space:
mode:
Diffstat (limited to 'nova')
-rw-r--r--nova/utils.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/nova/utils.py b/nova/utils.py
index f1de74549..e5b4fe2d2 100644
--- a/nova/utils.py
+++ b/nova/utils.py
@@ -223,12 +223,10 @@ def trycmd(*args, **kwargs):
failed = False
except exception.ProcessExecutionError, exn:
out, err = '', str(exn)
- LOG.debug(err)
failed = True
if not failed and discard_warnings and err:
# Handle commands that output to stderr but otherwise succeed
- LOG.debug(err)
err = ''
return out, err