diff options
author | Jeremy Katz <katzj@redhat.com> | 2005-11-17 00:06:11 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2005-11-17 00:06:11 +0000 |
commit | f56053f0158cfd505da24cbb0fde3aaeaa195069 (patch) | |
tree | f0d8e3f50b84f1c5a955dc46ff56d1f067c3425d | |
parent | d04b339be83a74df2c954ac75f5c77161a7bf9cd (diff) | |
download | anaconda-f56053f0158cfd505da24cbb0fde3aaeaa195069.tar.gz anaconda-f56053f0158cfd505da24cbb0fde3aaeaa195069.tar.xz anaconda-f56053f0158cfd505da24cbb0fde3aaeaa195069.zip |
2005-11-16 Jeremy Katz <katzj@redhat.com>
* anaconda_log.py (DEFAULT_LEVEL): Back to info for default.
* loader2/log.c: Likewise.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | anaconda_log.py | 2 | ||||
-rw-r--r-- | loader2/log.c | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2005-11-16 Jeremy Katz <katzj@redhat.com> + + * anaconda_log.py (DEFAULT_LEVEL): Back to info for default. + * loader2/log.c: Likewise. + 2005-11-16 Chris Lumens <clumens@redhat.com> * kickstart.py (Kickstart.runPreScripts): Don't give a progress bar diff --git a/anaconda_log.py b/anaconda_log.py index 2772c458d..fb9c76815 100644 --- a/anaconda_log.py +++ b/anaconda_log.py @@ -20,7 +20,7 @@ import sys import logging from logging.handlers import SysLogHandler, SYSLOG_UDP_PORT -DEFAULT_LEVEL = logging.WARNING +DEFAULT_LEVEL = logging.INFO logFile = "/tmp/anaconda.log" diff --git a/loader2/log.c b/loader2/log.c index 402516ae8..eb3258d46 100644 --- a/loader2/log.c +++ b/loader2/log.c @@ -27,7 +27,7 @@ static FILE * tty_logfile = NULL; static FILE * file_logfile = NULL; -static int minLevel = WARNING; +static int minLevel = INFO; static void printLogHeader(int level, FILE *outfile) { time_t current_time = time(NULL); |