diff options
| author | Evan Wilson <evan@oliodevices.com> | 2016-02-05 17:37:46 -0800 |
|---|---|---|
| committer | Evan Wilson <evan@oliodevices.com> | 2016-02-05 17:37:46 -0800 |
| commit | 1c4a9bac73e383a7c5088c3167410d8ff3fc985d (patch) | |
| tree | 51716f2806a888a4b5a91891670d967df3a83022 | |
| parent | e4603b17c8f1f6712535b88fdf8a7701c2c3b0a1 (diff) | |
| download | olio-linux-3.10-1c4a9bac73e383a7c5088c3167410d8ff3fc985d.tar.xz olio-linux-3.10-1c4a9bac73e383a7c5088c3167410d8ff3fc985d.zip | |
Decreasing kernel log level
Change-Id: I90e53b5ae11bd53183ccc80fe6b4581b88a3501a
| -rw-r--r-- | kernel/printk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/printk.c b/kernel/printk.c index bf785e0ce73..1b76b38986b 100644 --- a/kernel/printk.c +++ b/kernel/printk.c @@ -60,7 +60,7 @@ extern void printascii(char *); /* We show everything that is MORE important than this.. */ #define MINIMUM_CONSOLE_LOGLEVEL 1 /* Minimum loglevel we let people use */ -#define DEFAULT_CONSOLE_LOGLEVEL 7 /* anything MORE serious than KERN_DEBUG */ +#define DEFAULT_CONSOLE_LOGLEVEL 1 /* anything MORE serious than KERN_DEBUG */ int console_printk[4] = { DEFAULT_CONSOLE_LOGLEVEL, /* console_loglevel */ |