summaryrefslogtreecommitdiffstats
path: root/anaconda_log.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2005-11-10 16:00:31 +0000
committerChris Lumens <clumens@redhat.com>2005-11-10 16:00:31 +0000
commit0c9c6d5fc10558d20dee8832c888a65c10a17363 (patch)
tree472f2ae2d1548541d80f381c55f86064cfd462f9 /anaconda_log.py
parentbdd7bf151b77a9188163f900f88db49582e1eac2 (diff)
downloadanaconda-0c9c6d5fc10558d20dee8832c888a65c10a17363.tar.gz
anaconda-0c9c6d5fc10558d20dee8832c888a65c10a17363.tar.xz
anaconda-0c9c6d5fc10558d20dee8832c888a65c10a17363.zip
Change level on stdout logging so we actually see what's being printed.
Diffstat (limited to 'anaconda_log.py')
-rw-r--r--anaconda_log.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/anaconda_log.py b/anaconda_log.py
index bdcb5d2dc..2772c458d 100644
--- a/anaconda_log.py
+++ b/anaconda_log.py
@@ -54,11 +54,11 @@ class AnacondaLog:
# parent loggers for processing and possibly be written to the
# log.
self.stdoutLogger = logging.getLogger("anaconda.stdout")
- self.stdoutLogger.setLevel(minLevel)
+ self.stdoutLogger.setLevel(logging.INFO)
# Add a handler for the duped stuff. No fancy formatting, thanks.
self.addFileHandler (sys.stdout, self.stdoutLogger,
- fmtStr="%(message)s")
+ fmtStr="%(message)s", minLevel=logging.INFO)
# Add a simple handler - file or stream, depending on what we're given.
def addFileHandler (self, file, addToLogger, minLevel=DEFAULT_LEVEL,