diff options
author | shnavid <shnavid@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-04-05 15:13:50 +0000 |
---|---|---|
committer | shnavid <shnavid@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-04-05 15:13:50 +0000 |
commit | c1abccb377f9717929ac2127242470dc28ea37b6 (patch) | |
tree | 2828f2283e967afccfbb96072885ddcb1cc415b7 /src/lib | |
parent | b4cce02f1f7bab5e6e7d66d4fb8580a493fbeaf5 (diff) | |
download | sos-c1abccb377f9717929ac2127242470dc28ea37b6.tar.gz |
No need to be that verbose, some commands will often fail. Downgrading message to "verbose" (visible with -v and up)
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@112 ef72aa8b-4018-0410-8976-d6e080ef94d8
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/sos/plugintools.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/sos/plugintools.py b/src/lib/sos/plugintools.py index b5741e27..116f861e 100644 --- a/src/lib/sos/plugintools.py +++ b/src/lib/sos/plugintools.py @@ -369,7 +369,7 @@ class PluginBase: except KeyboardInterrupt: raise KeyboardInterrupt except Exception, e: - self.cInfo['soslog'].error("Error copying from pathspec %s (%s)" % (path,e)) + self.cInfo['soslog'].verbose("Error copying from pathspec %s (%s)" % (path,e)) for prog in self.collectProgs: self.cInfo['soslog'].debug("collecting output of '%s'" % prog) try: @@ -379,7 +379,7 @@ class PluginBase: except KeyboardInterrupt: raise KeyboardInterrupt except: - self.cInfo['soslog'].error("Error collecting output of '%s'" % prog,) + self.cInfo['soslog'].verbose("Error collecting output of '%s'" % prog,) def checkenabled(self): """ This function can be overidden to let the plugin decide whether |