diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2013-11-18 12:52:40 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2013-11-18 12:52:40 +0000 |
commit | 71bf206a73e62cedd923445abb0f90ffe1909773 (patch) | |
tree | 1705ea1ac9a855a3df7d6a44f6877e2f6643fca7 | |
parent | 4905850427b2209671f138586926a27cf59489b0 (diff) | |
download | sos-71bf206a73e62cedd923445abb0f90ffe1909773.tar.gz |
Change default console log level to WARNING to match sos-2.2
Commit 6ea48cb changed the default log level for console output
from WARNING to ERROR and reclassified several messages.
This causes plug-in validation messages to be silent at the
default verbosity.
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/sosreport.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/sosreport.py b/sos/sosreport.py index 0076d64d..060168cb 100644 --- a/sos/sosreport.py +++ b/sos/sosreport.py @@ -677,7 +677,7 @@ class SoSReport(object): elif self.opts.verbosity and self.opts.verbosity > 0: console.setLevel(logging.INFO) else: - console.setLevel(logging.ERROR) + console.setLevel(logging.WARNING) self.soslog.addHandler(console) # ui log |