aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryn M. Reeves <bmr@redhat.com>2013-06-10 19:50:28 +0100
committerBryn M. Reeves <bmr@redhat.com>2013-06-10 19:50:28 +0100
commitf81df25a32ff525f965a52581711ff06563166b5 (patch)
tree7a32defce081c1f459553fe4e5aa9e2ab702875a
parentfdfa635e9435809b23f8ac7d78e89728950ba096 (diff)
downloadsos-f81df25a32ff525f965a52581711ff06563166b5.tar.gz
Reduce level of 'could not run' messages info->debug
We expect not to find all commands; don't output a log message on each missing binary. Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r--sos/plugins/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/__init__.py b/sos/plugins/__init__.py
index 70711a3e..e25f0359 100644
--- a/sos/plugins/__init__.py
+++ b/sos/plugins/__init__.py
@@ -543,7 +543,7 @@ class Plugin(object):
# pylint: disable-msg = W0612
status, shout, runtime = sos_get_command_output(exe, timeout=timeout)
if (status == 127):
- self.soslog.info("could not run '%s': command not found" % exe)
+ self.soslog.debug("could not run '%s': command not found" % exe)
return None
if suggest_filename: