diff options
| author | Jenkins <jenkins@review.openstack.org> | 2012-07-31 06:27:01 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2012-07-31 06:27:01 +0000 |
| commit | 705cc12964996d0771cc142b07910b568d6bca43 (patch) | |
| tree | 3c41d4da2b7df1fe504c442350cdf308c568f789 /nova | |
| parent | 5e6e4731cd1dcdae58c0e9bce5c8b3393355bb92 (diff) | |
| parent | 65b76aa3cd847fdf8f8a312188b8b2e00371fb3c (diff) | |
Merge "reduce debugging from utils.trycmd()"
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/utils.py | 2 |
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 |
