diff options
| author | Evan Wilson <evan@oliodevices.com> | 2016-02-05 17:37:46 -0800 |
|---|---|---|
| committer | Evan Wilson <evan@oliodevices.com> | 2016-02-19 01:06:59 -0800 |
| commit | baf721a9c605a09942b22f8bf3007ba0df1b7987 (patch) | |
| tree | e8266ff404ce5bb7ab8b5e267966e5c9f07a82d4 | |
| parent | fa229160d257ae91d41de7929d0acb81869c779f (diff) | |
| download | olio-linux-3.10-baf721a9c605a09942b22f8bf3007ba0df1b7987.tar.xz olio-linux-3.10-baf721a9c605a09942b22f8bf3007ba0df1b7987.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 */ |