Blame SOURCES/sos-silence-could-not-run.patch

6b17e9
commit f81df25a32ff525f965a52581711ff06563166b5
6b17e9
Author: Bryn M. Reeves <bmr@redhat.com>
6b17e9
Date:   Mon Jun 10 19:50:28 2013 +0100
6b17e9
6b17e9
    Reduce level of 'could not run' messages info->debug
6b17e9
    
6b17e9
    We expect not to find all commands; don't output a log message on
6b17e9
    each missing binary.
6b17e9
    
6b17e9
    Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
6b17e9
6b17e9
diff --git a/sos/plugins/__init__.py b/sos/plugins/__init__.py
6b17e9
index 70711a3..e25f035 100644
6b17e9
--- a/sos/plugins/__init__.py
6b17e9
+++ b/sos/plugins/__init__.py
6b17e9
@@ -543,7 +543,7 @@ class Plugin(object):
6b17e9
         # pylint: disable-msg = W0612
6b17e9
         status, shout, runtime = sos_get_command_output(exe, timeout=timeout)
6b17e9
         if (status == 127):
6b17e9
-            self.soslog.info("could not run '%s': command not found" % exe)
6b17e9
+            self.soslog.debug("could not run '%s': command not found" % exe)
6b17e9
             return None
6b17e9
 
6b17e9
         if suggest_filename: